diff --git a/Cargo.lock b/Cargo.lock index bb7f854..6c2f98c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,6 +335,12 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "portable-atomic" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" + [[package]] name = "ppv-lite86" version = "0.2.17" @@ -352,9 +358,9 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.20.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b" +checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8" dependencies = [ "anyhow", "cfg-if", @@ -362,6 +368,7 @@ dependencies = [ "libc", "memoffset", "parking_lot", + "portable-atomic", "pyo3-build-config", "pyo3-ffi", "pyo3-macros", @@ -370,9 +377,9 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.20.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a96fe70b176a89cff78f2fa7b3c930081e163d5379b4dcdf993e3ae29ca662e5" +checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50" dependencies = [ "once_cell", "target-lexicon", @@ -380,9 +387,9 @@ dependencies = [ [[package]] name = "pyo3-ffi" -version = "0.20.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "214929900fd25e6604661ed9cf349727c8920d47deff196c4e28165a6ef2a96b" +checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403" dependencies = [ "libc", "pyo3-build-config", @@ -390,9 +397,9 @@ dependencies = [ [[package]] name = "pyo3-log" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c10808ee7250403bedb24bc30c32493e93875fef7ba3e4292226fe924f398bd" +checksum = "2af49834b8d2ecd555177e63b273b708dea75150abc6f5341d0a6e1a9623976c" dependencies = [ "arc-swap", "log", @@ -401,9 +408,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.20.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dac53072f717aa1bfa4db832b39de8c875b7c7af4f4a6fe93cdbf9264cf8383b" +checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -413,12 +420,13 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.20.0" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7774b5a8282bd4f25f803b1f0d945120be959a36c72e08e7cd031c792fdfd424" +checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c" dependencies = [ "heck", "proc-macro2", + "pyo3-build-config", "quote", "syn", ] diff --git a/androscalpel/Cargo.toml b/androscalpel/Cargo.toml index 5954747..8e1338e 100644 --- a/androscalpel/Cargo.toml +++ b/androscalpel/Cargo.toml @@ -14,8 +14,8 @@ androscalpel_serializer = { version = "0.1.0", path = "../androscalpel_serialize anyhow = { version = "1.0.75", features = ["backtrace"] } apk_frauder = { version = "0.1.0", path = "../apk_frauder" } log = "0.4.20" -pyo3 = { version = "0.20.0", features = ["anyhow", "abi3-py38"] } -pyo3-log = "0.9.0" +pyo3 = { version = "0.21.0", features = ["anyhow", "abi3-py38"] } +pyo3-log = "0.10.0" rayon = "1.9.0" serde = { version = "1.0.195", features = ["derive"] } serde_json = "1.0.111" diff --git a/androscalpel/src/apk.rs b/androscalpel/src/apk.rs index 0c477e2..5b5c192 100644 --- a/androscalpel/src/apk.rs +++ b/androscalpel/src/apk.rs @@ -35,7 +35,8 @@ impl Apk { let classes = dex .get_class_defs() .par_iter() - .map(|class| self.get_class_from_dex_file(class, &dex)) + .enumerate() + .map(|(idx, class)| self.get_class_from_dex_file(class, idx, &dex)) .map(|class| class.map(|class| (class.descriptor.clone(), class))) .collect::, _>>()?; self.classes.par_extend(classes); @@ -45,9 +46,12 @@ impl Apk { } /// Extract a class from a dex file reader. + /// `class_item_idx` if the index of the `class_def_item` of the class, **not** the + /// `class_idx`. fn get_class_from_dex_file( &self, class_item: &ClassDefItem, + class_item_idx: usize, dex: &DexFileReader, ) -> Result { let descriptor = Self::get_id_type_from_idx(class_item.class_idx as usize, dex)?; @@ -112,6 +116,8 @@ impl Apk { } } + let hiddenapi = dex.get_class_hiddenapi_flags(class_item_idx)?; + let mut hiddenapi_i = 0; let mut static_fields_list = vec![]; let mut instance_fields_list = vec![]; let mut direct_methods = HashMap::new(); @@ -123,12 +129,32 @@ impl Apk { Self::get_field_list_from_encoded_field_list(&data.static_fields, dex)?; instance_fields_list = Self::get_field_list_from_encoded_field_list(&data.instance_fields, dex)?; - for method in Self::get_method_list_from_encoded_field_list(&data.direct_methods, dex)? + if let Some(hiddenapi) = &hiddenapi { + for field in &mut static_fields_list { + field.hiddenapi = Some((&hiddenapi[hiddenapi_i]).into()); + hiddenapi_i += 1; + } + for field in &mut instance_fields_list { + field.hiddenapi = Some((&hiddenapi[hiddenapi_i]).into()); + hiddenapi_i += 1; + } + } + for mut method in + Self::get_method_list_from_encoded_field_list(&data.direct_methods, dex)? { + if let Some(hiddenapi) = &hiddenapi { + method.hiddenapi = Some((&hiddenapi[hiddenapi_i]).into()); + hiddenapi_i += 1; + } direct_methods.insert(method.descriptor.clone(), method); } - for method in Self::get_method_list_from_encoded_field_list(&data.virtual_methods, dex)? + for mut method in + Self::get_method_list_from_encoded_field_list(&data.virtual_methods, dex)? { + if let Some(hiddenapi) = &hiddenapi { + method.hiddenapi = Some((&hiddenapi[hiddenapi_i]).into()); + hiddenapi_i += 1; + } virtual_methods.insert(method.descriptor.clone(), method); } } @@ -617,6 +643,7 @@ impl Apk { is_synthetic, is_enum, value: None, + hiddenapi: None, annotations: vec![], }) } @@ -746,6 +773,7 @@ impl Apk { is_declared_syncrhonized, annotations: vec![], parameters_annotations: vec![], + hiddenapi: None, code, }) } @@ -2444,7 +2472,7 @@ impl Apk { Ok(self .gen_raw_dex()? .into_iter() - .map(|bytes| PyBytes::new(py, &bytes).into()) + .map(|bytes| PyBytes::new_bound(py, &bytes).into()) .collect()) } diff --git a/androscalpel/src/class.rs b/androscalpel/src/class.rs index de058b9..c54c787 100644 --- a/androscalpel/src/class.rs +++ b/androscalpel/src/class.rs @@ -316,7 +316,7 @@ impl Class { .any(|field| field.value.is_some()) } - /// If the class or its fields/methods have annotations + /// Check if the class or its fields/methods have annotations pub fn has_annotations(&self) -> bool { !self.annotations.is_empty() || self @@ -330,11 +330,30 @@ impl Class { || self .direct_methods .values() - .any(|field| field.has_annotations()) + .any(|method| method.has_annotations()) || self .virtual_methods .values() - .any(|field| field.has_annotations()) + .any(|method| method.has_annotations()) + } + + /// Check if the class have a field of method with hiddenapi information + pub fn has_hiddenapi(&self) -> bool { + self.static_fields + .values() + .any(|field| field.hiddenapi.is_some()) + || self + .instance_fields + .values() + .any(|field| field.hiddenapi.is_some()) + || self + .direct_methods + .values() + .any(|method| method.hiddenapi.is_some()) + || self + .virtual_methods + .values() + .any(|method| method.hiddenapi.is_some()) } /// Return the binary representation of access flags. diff --git a/androscalpel/src/dex_id.rs b/androscalpel/src/dex_id.rs index 093e7cb..a48215f 100644 --- a/androscalpel/src/dex_id.rs +++ b/androscalpel/src/dex_id.rs @@ -667,11 +667,11 @@ impl IdField { /// ``` /// use androscalpel::IdField; /// - /// let proto = IdField::from_smali("Ljava/lang/annotation/ElementType;->METHOD:Ljava/lang/annotation/ElementType;").unwrap(); + /// let proto = IdField::from_smali("Ljava/lang/annotation/ElementType;->FIELD:Ljava/lang/annotation/ElementType;").unwrap(); /// assert_eq!( /// proto, /// IdField::new( - /// "METHOD".into(), + /// "FIELD".into(), /// IdType::class("java/lang/annotation/ElementType"), /// IdType::class("java/lang/annotation/ElementType"), /// ) diff --git a/androscalpel/src/dex_string.rs b/androscalpel/src/dex_string.rs index 3aab161..cd0ef28 100644 --- a/androscalpel/src/dex_string.rs +++ b/androscalpel/src/dex_string.rs @@ -138,10 +138,10 @@ impl Hash for DexString { } } -pub fn as_dex_string(obj: &PyAny) -> PyResult { - if let Ok(string) = DexString::extract(obj) { +pub fn as_dex_string(obj: &Bound<'_, PyAny>) -> PyResult { + if let Ok(string) = DexString::extract_bound(obj) { Ok(string) - } else if let Ok(string) = String::extract(obj) { + } else if let Ok(string) = String::extract_bound(obj) { Ok(string.into()) } else { Err(PyErr::new::(format!( @@ -198,10 +198,10 @@ impl DexString { strings } - fn __richcmp__(&self, other: &PyAny, op: CompareOp) -> PyResult { + fn __richcmp__(&self, other: &Bound<'_, PyAny>, op: CompareOp) -> PyResult { let other: Self = other .extract() - .or(::extract(other).map(|string| string.into()))?; + .or(::extract_bound(other).map(|string| string.into()))?; Ok(op.matches(self.0.cmp(&other.0))) } } diff --git a/androscalpel/src/dex_writer.rs b/androscalpel/src/dex_writer.rs index cb18dc4..253fa60 100644 --- a/androscalpel/src/dex_writer.rs +++ b/androscalpel/src/dex_writer.rs @@ -6,7 +6,7 @@ use std::io::{Cursor, Seek, SeekFrom, Write}; use adler::Adler32; use anyhow::{anyhow, bail, Context}; -use log::debug; +use log::{debug, warn}; use sha1::{Digest, Sha1}; use crate::Result; @@ -180,6 +180,12 @@ impl DexWriter { pub fn add_class(&mut self, class: &Class) -> Result<(), DexWritterError> { debug!("Adding class {} to dex builder", class.descriptor.__str__()); + if class.has_hiddenapi() { + warn!( + "Class {} has hidden API data: serialization of hidden API no yet implemented", + class.descriptor.__str__() + ); + } let new_strings = class.get_all_strings(); let new_types = class.get_all_types(); diff --git a/androscalpel/src/field.rs b/androscalpel/src/field.rs index edc541e..643541d 100644 --- a/androscalpel/src/field.rs +++ b/androscalpel/src/field.rs @@ -6,8 +6,8 @@ use std::collections::HashSet; use pyo3::prelude::*; use crate::{ - DexAnnotationItem, DexString, DexValue, IdField, IdMethod, IdMethodType, IdType, MethodHandle, - Result, + DexAnnotationItem, DexString, DexValue, HiddenApiData, IdField, IdMethod, IdMethodType, IdType, + MethodHandle, Result, }; use androscalpel_serializer::consts::*; @@ -44,6 +44,9 @@ pub struct Field { /// The annotations for this field #[pyo3(get)] pub annotations: Vec, + /// Hidden Api data. + #[pyo3(get)] + pub hiddenapi: Option, } /// Represent the visibility of a field @@ -80,6 +83,7 @@ impl Field { is_enum: false, value: None, annotations: vec![], + hiddenapi: None, } } @@ -127,7 +131,7 @@ impl Field { /// Set the value from a python object #[setter] - pub fn set_value(&mut self, ob: &PyAny) -> PyResult<()> { + pub fn set_value(&mut self, ob: &Bound<'_, PyAny>) -> PyResult<()> { self.value = Some(ob.extract()?); // TODO: check type match Ok(()) diff --git a/androscalpel/src/hiddenapi.rs b/androscalpel/src/hiddenapi.rs new file mode 100644 index 0000000..662f6b1 --- /dev/null +++ b/androscalpel/src/hiddenapi.rs @@ -0,0 +1,191 @@ +//! Representation of the hidden API data + +use log::warn; +use pyo3::prelude::*; +use serde::{Deserialize, Serialize}; + +#[pyclass] +#[derive(Debug, PartialEq, Eq, Hash, Clone, Deserialize, Serialize)] +pub struct HiddenApiData { + pub permission: HiddenApiPermission, + pub domain: HiddenApiDomain, +} + +impl From<&androscalpel_serializer::HiddenApiFlags> for HiddenApiData { + fn from(flags: &androscalpel_serializer::HiddenApiFlags) -> Self { + Self { + permission: flags.value.into(), + domain: flags.domain_api.into(), + } + } +} +impl From for HiddenApiData { + fn from(flags: androscalpel_serializer::HiddenApiFlags) -> Self { + flags.into() + } +} + +impl From<&HiddenApiData> for androscalpel_serializer::HiddenApiFlags { + fn from(flags: &HiddenApiData) -> Self { + Self { + value: (&flags.permission).into(), + domain_api: (&flags.domain).into(), + } + } +} +impl From for androscalpel_serializer::HiddenApiFlags { + fn from(flags: HiddenApiData) -> Self { + flags.into() + } +} + +#[pyclass] +#[derive(Debug, PartialEq, Eq, Hash, Clone, Deserialize, Serialize)] +pub enum HiddenApiPermission { + /// Interfaces that can be freely used and are supported as + /// part of the officially documented Android framework Package Index + Whitelist {}, + /// Non-SDK interfaces that can be used regardless of the + /// application's target API level + Greylist {}, + /// Non-SDK interfaces that cannot be used regardless of the + /// application's target API level. Accessing one of these + /// interfaces causes a runtime error. + Blacklist {}, + /// Non-SDK interfaces that can be used for Android 8.x and + /// below unless they are restricted (targetSdkVersion <= 27 (O_MR1)). + GreylistMaxO {}, + /// Non-SDK interfaces that can be used for Android 9.x unless + /// they are restricted. + GreylistMaxP {}, + /// Non-SDK interfaces that can be used for Android 10.x unless + /// they are restricted. + GreylistMaxQ {}, + /// Non-SDK interfaces that can be used for Android 11.x unless + /// they are restricted. + GreylistMaxR {}, + GreylistMaxS {}, + /// Unknown flag, either an error or this crate is out of date. + Unknwon { + value: u8, + }, +} + +impl HiddenApiPermission { + pub fn to_smali_name(&self) -> &'static str { + match self { + Self::Whitelist {} => "whitelist", + Self::Greylist {} => "greylist", + Self::Blacklist {} => "blacklist", + Self::GreylistMaxO {} => "greylist-max-o", + Self::GreylistMaxP {} => "greylist-max-p", + Self::GreylistMaxQ {} => "greylist-max-q", + Self::GreylistMaxR {} => "greylist-max-r", + Self::GreylistMaxS {} => "greylist-max-s", + Self::Unknwon { .. } => "???list", + } + } +} + +impl From<&androscalpel_serializer::HiddenApiValue> for HiddenApiPermission { + fn from(permission: &androscalpel_serializer::HiddenApiValue) -> Self { + match permission { + androscalpel_serializer::HiddenApiValue::Whitelist => Self::Whitelist {}, + androscalpel_serializer::HiddenApiValue::Greylist => Self::Greylist {}, + androscalpel_serializer::HiddenApiValue::Blacklist => Self::Blacklist {}, + androscalpel_serializer::HiddenApiValue::GreylistMaxO => Self::GreylistMaxO {}, + androscalpel_serializer::HiddenApiValue::GreylistMaxP => Self::GreylistMaxP {}, + androscalpel_serializer::HiddenApiValue::GreylistMaxQ => Self::GreylistMaxQ {}, + androscalpel_serializer::HiddenApiValue::GreylistMaxR => Self::GreylistMaxR {}, + androscalpel_serializer::HiddenApiValue::GreylistMaxS => Self::GreylistMaxS {}, + androscalpel_serializer::HiddenApiValue::Unknwon(val) => Self::Unknwon { value: *val }, + } + } +} +impl From for HiddenApiPermission { + fn from(permission: androscalpel_serializer::HiddenApiValue) -> Self { + (&permission).into() + } +} + +impl From<&HiddenApiPermission> for androscalpel_serializer::HiddenApiValue { + fn from(permission: &HiddenApiPermission) -> Self { + match permission { + HiddenApiPermission::Whitelist {} => Self::Whitelist, + HiddenApiPermission::Greylist {} => Self::Greylist, + HiddenApiPermission::Blacklist {} => Self::Blacklist, + HiddenApiPermission::GreylistMaxO {} => Self::GreylistMaxO, + HiddenApiPermission::GreylistMaxP {} => Self::GreylistMaxP, + HiddenApiPermission::GreylistMaxQ {} => Self::GreylistMaxQ, + HiddenApiPermission::GreylistMaxR {} => Self::GreylistMaxR, + HiddenApiPermission::GreylistMaxS {} => Self::GreylistMaxS, + HiddenApiPermission::Unknwon { value } => Self::Unknwon(*value), + } + } +} + +impl From for androscalpel_serializer::HiddenApiValue { + fn from(permission: HiddenApiPermission) -> Self { + (&permission).into() + } +} + +#[pyclass] +#[derive(Debug, PartialEq, Eq, Hash, Clone, Deserialize, Serialize)] +pub struct HiddenApiDomain { + pub is_core_platform_api: bool, + pub is_test_api: bool, + /// Unknown domains. + pub unknown_flags: u32, +} + +impl HiddenApiDomain { + pub fn to_smali_name(&self) -> String { + let mut value = String::new(); + if self.is_core_platform_api { + value += "core-platform-api"; + } + if self.is_test_api { + if !value.is_empty() { + value += "|"; + } + value += "test-api"; + } + if self.unknown_flags != 0 { + warn!("This attribut has an unknown hiddenapi domain set, this will not be display for compatibility with apktool"); + } + value + } +} + +impl From<&androscalpel_serializer::HiddenApiDomain> for HiddenApiDomain { + fn from(domain: &androscalpel_serializer::HiddenApiDomain) -> Self { + Self { + is_core_platform_api: domain.is_core_platform_api, + is_test_api: domain.is_test_api, + unknown_flags: domain.unknown_flags, + } + } +} + +impl From for HiddenApiDomain { + fn from(domain: androscalpel_serializer::HiddenApiDomain) -> Self { + (&domain).into() + } +} + +impl From<&HiddenApiDomain> for androscalpel_serializer::HiddenApiDomain { + fn from(domain: &HiddenApiDomain) -> androscalpel_serializer::HiddenApiDomain { + Self { + is_core_platform_api: domain.is_core_platform_api, + is_test_api: domain.is_test_api, + unknown_flags: domain.unknown_flags, + } + } +} + +impl From for androscalpel_serializer::HiddenApiDomain { + fn from(domain: HiddenApiDomain) -> androscalpel_serializer::HiddenApiDomain { + (&domain).into() + } +} diff --git a/androscalpel/src/lib.rs b/androscalpel/src/lib.rs index c8bdb61..22a21da 100644 --- a/androscalpel/src/lib.rs +++ b/androscalpel/src/lib.rs @@ -14,6 +14,7 @@ pub mod dex_string; pub mod dex_writer; pub mod field; mod hashmap_vectorize; +pub mod hiddenapi; pub mod instructions; pub mod method; pub mod method_handle; @@ -29,6 +30,7 @@ pub use dex_id::*; pub use dex_string::*; pub use dex_writer::*; pub use field::*; +pub use hiddenapi::*; pub use instructions as ins; pub use method::*; pub use method_handle::*; @@ -40,7 +42,7 @@ mod tests; /// Androscalpel. #[pymodule] -fn androscalpel(py: Python, m: &PyModule) -> PyResult<()> { +fn androscalpel(py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> { pyo3_log::init(); m.add_class::()?; m.add_class::()?; @@ -69,6 +71,10 @@ fn androscalpel(py: Python, m: &PyModule) -> PyResult<()> { m.add_class::()?; m.add_class::()?; + m.add_class::()?; + m.add_class::()?; + m.add_class::()?; + m.add_class::()?; m.add_class::()?; m.add_class::()?; @@ -80,18 +86,18 @@ fn androscalpel(py: Python, m: &PyModule) -> PyResult<()> { m.add_class::()?; m.add_class::()?; - let ins_module = PyModule::new(py, "ins")?; - androscalpel_ins(py, ins_module)?; - m.add_submodule(ins_module)?; - let utils_module = PyModule::new(py, "utils")?; - py_utils::export_module(py, utils_module)?; - m.add_submodule(utils_module)?; + let ins_module = PyModule::new_bound(py, "ins")?; + androscalpel_ins(py, &ins_module)?; + m.add_submodule(&ins_module)?; + let utils_module = PyModule::new_bound(py, "utils")?; + py_utils::export_module(py, &utils_module)?; + m.add_submodule(&utils_module)?; Ok(()) } /// Dalvik opcode for Androscalpel. -fn androscalpel_ins(_py: Python, m: &PyModule) -> PyResult<()> { +fn androscalpel_ins(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> { m.add_class::()?; m.add_class::()?; m.add_class::()?; diff --git a/androscalpel/src/method.rs b/androscalpel/src/method.rs index 50c8d0c..1ce0614 100644 --- a/androscalpel/src/method.rs +++ b/androscalpel/src/method.rs @@ -6,8 +6,8 @@ use std::collections::HashSet; use pyo3::prelude::*; use crate::{ - Code, DexAnnotationItem, DexString, IdField, IdMethod, IdMethodType, IdType, MethodHandle, - Result, + Code, DexAnnotationItem, DexString, HiddenApiData, IdField, IdMethod, IdMethodType, IdType, + MethodHandle, Result, }; use androscalpel_serializer::consts::*; @@ -62,6 +62,9 @@ pub struct Method { /// The annotations for the parameters of this method method #[pyo3(get)] pub parameters_annotations: Vec>, + /// Hidden Api data. + #[pyo3(get)] + pub hiddenapi: Option, /// The code of the method #[pyo3(get)] @@ -109,6 +112,7 @@ impl Method { annotations: vec![], parameters_annotations: vec![], code: None, + hiddenapi: None, } } diff --git a/androscalpel/src/py_utils.rs b/androscalpel/src/py_utils.rs index 05e17ec..2a40367 100644 --- a/androscalpel/src/py_utils.rs +++ b/androscalpel/src/py_utils.rs @@ -17,18 +17,18 @@ use apk_frauder::{end_of_central_directory::EndCentralDirectory, ZipFileReader}; /// Convert an integer to the uleb128 byte encoding #[pyfunction] pub fn int_to_uleb128(py: Python, x: u32) -> Result { - Ok(PyBytes::new(py, &Uleb128(x).serialize_to_vec()?).into()) + Ok(PyBytes::new_bound(py, &Uleb128(x).serialize_to_vec()?).into()) } /// Convert an integer to the uleb128p1 byte encoding #[pyfunction] pub fn int_to_uleb128p1(py: Python, x: u32) -> Result { - Ok(PyBytes::new(py, &Uleb128p1(x).serialize_to_vec()?).into()) + Ok(PyBytes::new_bound(py, &Uleb128p1(x).serialize_to_vec()?).into()) } /// Convert an integer to the sleb128 byte encoding #[pyfunction] pub fn int_to_sleb128(py: Python, x: i32) -> Result { - Ok(PyBytes::new(py, &Sleb128(x).serialize_to_vec()?).into()) + Ok(PyBytes::new_bound(py, &Sleb128(x).serialize_to_vec()?).into()) } /// Decode an uleb128 encoded integer @@ -112,17 +112,21 @@ pub fn is_zip(file: PathBuf) -> bool { pub fn replace_dex( apk: PathBuf, dst: PathBuf, - dexfiles: Vec<&[u8]>, + dexfiles: Vec<&PyBytes>, keystore: PathBuf, zipalign: Option, apksigner: Option, - additionnal_files: Option>>, + additionnal_files: Option>>, ) { - let mut dexfiles: Vec<_> = dexfiles.iter().map(Cursor::new).collect(); + let mut dexfiles: Vec<_> = dexfiles + .into_iter() + .map(PyBytes::as_bytes) + .map(Cursor::new) + .collect(); let additionnal_files: Option> = additionnal_files.map(|additionnal_files| { additionnal_files .into_iter() - .map(|(k, v)| (k, v.map(Cursor::new))) + .map(|(k, v)| (k, v.map(PyBytes::as_bytes).map(Cursor::new))) .collect() }); apk_frauder::replace_dex( @@ -137,7 +141,7 @@ pub fn replace_dex( } /// export the function in a python module -pub(crate) fn export_module(_py: Python, m: &PyModule) -> PyResult<()> { +pub(crate) fn export_module(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> { m.add_function(wrap_pyfunction!(int_to_uleb128, m)?)?; m.add_function(wrap_pyfunction!(int_to_uleb128p1, m)?)?; m.add_function(wrap_pyfunction!(int_to_sleb128, m)?)?; diff --git a/androscalpel/src/tests/apktool_parse_hiddenapi.py b/androscalpel/src/tests/apktool_parse_hiddenapi.py new file mode 100644 index 0000000..0a3a32e --- /dev/null +++ b/androscalpel/src/tests/apktool_parse_hiddenapi.py @@ -0,0 +1,103 @@ +#!/usr/bin/python3 + +# require zip and apktool installed + +import sys +import os +import tempfile +from pathlib import Path +import json + + +def parse_smali(path: Path) -> tuple[str, dict, dict]: + class_name: str | None = None + fields = {} + methods = {} + with path.open() as file: + for line in file.readlines(): + if line.startswith(".class"): + if class_name is None: + class_name = line.strip().split(" ")[-1] + else: + raise RuntimeError(f"Two classes found in {path}") + if line.startswith(".field"): + k, v = parse_field(line) + fields[k] = v + elif line.startswith(".method"): + k, v = parse_method(line) + methods[k] = v + if class_name is None: + raise RuntimeError(f"No classe found in {path}") + return (class_name, fields, methods) + + +def parse_field(line: str) -> tuple[str, dict]: + data: dict[str, None | str | list[str]] = { + "value": None, + "other": [], + "hiddenapi": None, + "hiddenapi_domain": None, + } + if "=" in line: + line, val = line.split("=")[0], "=".join(line.split("=")[1:]) + data["value"] = val.strip() + line, ty = line.split(":") + vals = list(map(str.strip, line.split(" "))) + name = f"{vals[-1]}:{ty.strip()}" + vals = vals[:-1] + if vals: + if "api" in vals[-1]: + data["hiddenapi_domain"] = vals[-1] + vals = vals[:-1] + if vals: + if "list" in vals[-1]: + data["hiddenapi"] = vals[-1] + vals = vals[:-1] + data["other"] = vals + return name, data + + +def parse_method(line: str) -> tuple[str, dict]: + data: dict[str, None | str | list[str]] = { + "other": [], + "hiddenapi": None, + "hiddenapi_domain": None, + } + vals = list(map(str.strip, line.split(" "))) + name = vals[-1] + vals = vals[:-1] + if vals: + if "api" in vals[-1]: + data["hiddenapi_domain"] = vals[-1] + vals = vals[:-1] + if vals: + if "list" in vals[-1]: + data["hiddenapi"] = vals[-1] + vals = vals[:-1] + data["other"] = vals + return name, data + + +def main(): + if len(sys.argv) != 3: + print("rought smali parser") + print("usage:") + print(f" {sys.argv[0]} some_classes.dex output.json") + exit() + file = sys.argv[1] + dst = sys.argv[2] + data = {} + with tempfile.TemporaryDirectory() as tmp: + os.system(f"zip {tmp}/apk.apk {file}") + os.system(f"apktool d -o {tmp}/apktool.out {tmp}/apk.apk") + smalidir = Path(f"{tmp}/apktool.out/smali_{file.removesuffix('.dex')}") + for root, dirs, files in smalidir.walk(): + for file in files: + class_name, fields, methods = parse_smali(root / file) + data[class_name] = {"fields": fields, "methods": methods} + with open(dst, "w") as file: + json.dump(data, file) + + +if __name__ == "__main__": + main() diff --git a/androscalpel/src/tests/core-oj-33_hiddenapi.json b/androscalpel/src/tests/core-oj-33_hiddenapi.json new file mode 100644 index 0000000..53794d8 --- /dev/null +++ b/androscalpel/src/tests/core-oj-33_hiddenapi.json @@ -0,0 +1 @@ +{"Lcom/sun/net/ssl/internal/ssl/X509ExtendedTrustManager;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkClientTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkServerTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"fields": {"$VALUES:[Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HIGH:Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOW:Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MEDIUM:Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sensitivity:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sensitivityValueInSeconds()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lcom/sun/nio/file/ExtendedWatchEventModifier;": {"fields": {"$VALUES:[Lcom/sun/nio/file/ExtendedWatchEventModifier;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_TREE:Lcom/sun/nio/file/ExtendedWatchEventModifier;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lcom/sun/nio/file/ExtendedWatchEventModifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lcom/sun/nio/file/ExtendedWatchEventModifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lcom/sun/nio/file/ExtendedCopyOption;": {"fields": {"$VALUES:[Lcom/sun/nio/file/ExtendedCopyOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INTERRUPTIBLE:Lcom/sun/nio/file/ExtendedCopyOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lcom/sun/nio/file/ExtendedCopyOption;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lcom/sun/nio/file/ExtendedCopyOption;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lcom/sun/nio/file/ExtendedOpenOption;": {"fields": {"$VALUES:[Lcom/sun/nio/file/ExtendedOpenOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOSHARE_DELETE:Lcom/sun/nio/file/ExtendedOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOSHARE_READ:Lcom/sun/nio/file/ExtendedOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOSHARE_WRITE:Lcom/sun/nio/file/ExtendedOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lcom/sun/nio/file/ExtendedOpenOption;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lcom/sun/nio/file/ExtendedOpenOption;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lcom/sun/security/cert/internal/x509/X509V1CertImpl;": {"fields": {"serialVersionUID:J": {"value": "-0x1c6d8776efacf2edL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "wrappedCert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFactory()Ljava/security/cert/CertificateFactory;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "checkValidity()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getX509Certificate()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/awt/font/NumericShaper$1;": {"fields": {"this$0:Ljava/awt/font/NumericShaper;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/awt/font/NumericShaper;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/awt/font/NumericShaper$Range;Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/awt/font/NumericShaper$Range-IA;": {"fields": {}, "methods": {}}, "Ljava/awt/font/NumericShaper$Range$1;": {"fields": {}, "methods": {"(Ljava/lang/String;IIII)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IIIILjava/awt/font/NumericShaper$Range$1-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNumericBase()C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/awt/font/NumericShaper$Range$1-IA;": {"fields": {}, "methods": {}}, "Ljava/awt/font/NumericShaper$Range;": {"fields": {"$VALUES:[Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARABIC:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BALINESE:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BENGALI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAM:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEVANAGARI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EASTERN_ARABIC:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EUROPEAN:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GUJARATI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GURMUKHI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAVANESE:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANNADA:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KAYAH_LI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHMER:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LAO:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LEPCHA:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIMBU:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MALAYALAM:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEETEI_MAYEK:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONGOLIAN:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR_SHAN:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEW_TAI_LUE:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NKO:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OL_CHIKI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ORIYA:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SAURASHTRA:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDANESE:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_THAM_HORA:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_THAM_THAM:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAMIL:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TELUGU:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIBETAN:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VAI:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "base:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "start:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetbase(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetend(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetstart(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetDigitBase(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$minRange(Ljava/awt/font/NumericShaper$Range;I)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smindexToRange(I)Ljava/awt/font/NumericShaper$Range;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smmaskToRangeSet(I)Ljava/util/Set;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smtoRangeIndex(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smtoRangeMask(Ljava/util/Set;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IIII)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IIIILjava/awt/font/NumericShaper$Range-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDigitBase()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inRange(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexToRange(I)Ljava/awt/font/NumericShaper$Range;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskToRangeSet(I)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toRangeIndex(Ljava/awt/font/NumericShaper$Range;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toRangeMask(Ljava/util/Set;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/awt/font/NumericShaper$Range;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/awt/font/NumericShaper$Range;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumericBase()C": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/awt/font/NumericShaper;": {"fields": {"ALL_RANGES:I": {"value": "0x7ffff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_KEY:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BENGALI:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BENGALI_KEY:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BSEARCH_THRESHOLD:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CONTEXTUAL_MASK:I": {"value": "-0x80000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEVANAGARI:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEVANAGARI_KEY:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EASTERN_ARABIC:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EASTERN_ARABIC_KEY:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ETHIOPIC:I": {"value": "0x10000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC_KEY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EUROPEAN:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EUROPEAN_KEY:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GUJARATI:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GUJARATI_KEY:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GURMUKHI:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GURMUKHI_KEY:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KANNADA:I": {"value": "0x400", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANNADA_KEY:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KHMER:I": {"value": "0x20000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHMER_KEY:I": {"value": "0x11", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LAO:I": {"value": "0x2000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LAO_KEY:I": {"value": "0xd", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MALAYALAM:I": {"value": "0x800", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MALAYALAM_KEY:I": {"value": "0xb", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MONGOLIAN:I": {"value": "0x40000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONGOLIAN_KEY:I": {"value": "0x12", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MYANMAR:I": {"value": "0x8000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR_KEY:I": {"value": "0xf", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NUM_KEYS:I": {"value": "0x13", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ORIYA:I": {"value": "0x80", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ORIYA_KEY:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAMIL:I": {"value": "0x100", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAMIL_KEY:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TELUGU:I": {"value": "0x200", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TELUGU_KEY:I": {"value": "0x9", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THAI:I": {"value": "0x1000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAI_KEY:I": {"value": "0xc", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIBETAN:I": {"value": "0x4000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIBETAN_KEY:I": {"value": "0xe", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bases:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contexts:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctCache:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctCacheLimit:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x6f5695fe5d200b84L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "strongTable:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentRange:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mask:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeArray:[Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeSet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shapingRange:Ljava/awt/font/NumericShaper$Range;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stCache:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/awt/font/NumericShaper$Range;Ljava/util/Set;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkParams([CII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getContextKey(C)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getContextualShaper(I)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContextualShaper(II)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContextualShaper(Ljava/util/Set;)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContextualShaper(Ljava/util/Set;Ljava/awt/font/NumericShaper$Range;)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHighBit(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKeyFromMask(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShaper(I)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShaper(Ljava/awt/font/NumericShaper$Range;)Ljava/awt/font/NumericShaper;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isStrongDirectional(C)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeForCodePoint(I)Ljava/awt/font/NumericShaper$Range;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "search(I[III)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shapeContextually([CIII)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shapeContextually([CIILjava/awt/font/NumericShaper$Range;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shapeNonContextually([CII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeSet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRanges()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isContextual()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shape([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shape([CIII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shape([CIILjava/awt/font/NumericShaper$Range;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/awt/font/TextAttribute;": {"fields": {"BACKGROUND:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BIDI_EMBEDDING:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAR_REPLACEMENT:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FAMILY:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FONT:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FOREGROUND:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INPUT_METHOD_HIGHLIGHT:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INPUT_METHOD_UNDERLINE:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JUSTIFICATION:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JUSTIFICATION_FULL:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JUSTIFICATION_NONE:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KERNING:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KERNING_ON:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIGATURES:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIGATURES_ON:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NUMERIC_SHAPING:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "POSTURE:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "POSTURE_OBLIQUE:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "POSTURE_REGULAR:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUN_DIRECTION:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUN_DIRECTION_LTR:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUN_DIRECTION_RTL:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRIKETHROUGH:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRIKETHROUGH_ON:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPERSCRIPT:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPERSCRIPT_SUB:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPERSCRIPT_SUPER:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SWAP_COLORS:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SWAP_COLORS_ON:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRACKING:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRACKING_LOOSE:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRACKING_TIGHT:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSFORM:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_LOW_DASHED:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_LOW_DOTTED:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_LOW_GRAY:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_LOW_ONE_PIXEL:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_LOW_TWO_PIXEL:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERLINE_ON:Ljava/lang/Integer;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_BOLD:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_DEMIBOLD:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_DEMILIGHT:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_EXTRABOLD:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_EXTRA_LIGHT:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_HEAVY:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_LIGHT:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_MEDIUM:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_REGULAR:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_SEMIBOLD:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEIGHT_ULTRABOLD:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH:Ljava/awt/font/TextAttribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH_CONDENSED:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH_EXTENDED:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH_REGULAR:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH_SEMI_CONDENSED:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WIDTH_SEMI_EXTENDED:Ljava/lang/Float;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instanceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6b789d8c0de80d46L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/beans/ChangeListenerMap;": {"fields": {"map:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/util/EventListener;)V": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extract(Ljava/util/EventListener;)Ljava/util/EventListener;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/String;)[Ljava/util/EventListener;": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntries()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getListeners()[Ljava/util/EventListener;": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getListeners(Ljava/lang/String;)[Ljava/util/EventListener;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasListeners(Ljava/lang/String;)Z": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(I)[Ljava/util/EventListener;": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newProxy(Ljava/lang/String;Ljava/util/EventListener;)Ljava/util/EventListener;": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/String;Ljava/util/EventListener;)V": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/lang/String;[Ljava/util/EventListener;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/beans/IndexedPropertyChangeEvent;": {"fields": {"serialVersionUID:J": {"value": "-0x471ad2af2ec1996L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendTo(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/beans/PropertyChangeEvent;": {"fields": {"serialVersionUID:J": {"value": "0x61bcac98a722147bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "newValue:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oldValue:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "propagationId:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "propertyName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendTo(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNewValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOldValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropagationId()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropertyName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPropagationId(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/beans/PropertyChangeListener;": {"fields": {}, "methods": {"propertyChange(Ljava/beans/PropertyChangeEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/beans/PropertyChangeListenerProxy;": {"fields": {"propertyName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropertyName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "propertyChange(Ljava/beans/PropertyChangeEvent;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/beans/PropertyChangeSupport$PropertyChangeListenerMap-IA;": {"fields": {}, "methods": {}}, "Ljava/beans/PropertyChangeSupport$PropertyChangeListenerMap;": {"fields": {"EMPTY:[Ljava/beans/PropertyChangeListener;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/beans/PropertyChangeSupport$PropertyChangeListenerMap-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extract(Ljava/beans/PropertyChangeListener;)Ljava/beans/PropertyChangeListener;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extract(Ljava/util/EventListener;)Ljava/util/EventListener;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[Ljava/beans/PropertyChangeListener;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(I)[Ljava/util/EventListener;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newProxy(Ljava/lang/String;Ljava/beans/PropertyChangeListener;)Ljava/beans/PropertyChangeListener;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newProxy(Ljava/lang/String;Ljava/util/EventListener;)Ljava/util/EventListener;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/beans/PropertyChangeSupport;": {"fields": {"serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x58d5d264574860bbL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "map:Ljava/beans/PropertyChangeSupport$PropertyChangeListenerMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "source:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fire([Ljava/beans/PropertyChangeListener;Ljava/beans/PropertyChangeEvent;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "addPropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPropertyChangeListener(Ljava/lang/String;Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fireIndexedPropertyChange(Ljava/lang/String;III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fireIndexedPropertyChange(Ljava/lang/String;ILjava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fireIndexedPropertyChange(Ljava/lang/String;IZZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firePropertyChange(Ljava/beans/PropertyChangeEvent;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firePropertyChange(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firePropertyChange(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firePropertyChange(Ljava/lang/String;ZZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropertyChangeListeners()[Ljava/beans/PropertyChangeListener;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropertyChangeListeners(Ljava/lang/String;)[Ljava/beans/PropertyChangeListener;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasListeners(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePropertyChangeListener(Ljava/lang/String;Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Bits;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBoolean([BI)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar([BI)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble([BI)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat([BI)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt([BI)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong([BI)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort([BI)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putBoolean([BIZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar([BIC)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble([BID)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat([BIF)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt([BII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong([BIJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort([BIS)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/BufferedInputStream$$ExternalSyntheticBackportWithForwarding0;": {"fields": {}, "methods": {"m(Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/BufferedInputStream;": {"fields": {"DEFAULT_BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BUFFER_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bufUpdater:Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "marklimit:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markpos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBufIfOpen()[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInIfOpen()Ljava/io/InputStream;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read1([BII)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/BufferedOutputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushBuffer()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flush()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/BufferedReader$1;": {"fields": {"nextLine:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/io/BufferedReader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/BufferedReader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/BufferedReader;": {"fields": {"INVALIDATED:I": {"value": "-0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNMARKED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultCharBufferSize:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultExpectedLineLength:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cb:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:Ljava/io/Reader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markedChar:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markedSkipLF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nChars:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextChar:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readAheadLimit:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipLF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Reader;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fill()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read1([CII)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lines()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine(Z)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/BufferedWriter;": {"fields": {"defaultCharBufferSize:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cb:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nChars:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextChar:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/Writer;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/Writer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Writer;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "min(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushBuffer()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newLine()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ByteArrayInputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAllBytes()[B": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNBytes([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(Ljava/io/OutputStream;)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ByteArrayOutputStream;": {"fields": {"MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacity(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toByteArray()[B": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(I)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Ljava/nio/charset/Charset;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeTo(Ljava/io/OutputStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/CharArrayReader;": {"fields": {"buf:[C": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markedPos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"([C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/CharArrayWriter;": {"fields": {"buf:[C": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/CharArrayWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/CharArrayWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/CharArrayWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCharArray()[C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeTo(Ljava/io/Writer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/CharConversionException;": {"fields": {"serialVersionUID:J": {"value": "-0x78759ce22aa3ec97L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Closeable;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Console$1;": {"fields": {"this$0:Ljava/io/Console;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Console;Ljava/io/Writer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Console$LineReader;": {"fields": {"cb:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:Ljava/io/Reader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leftoverLF:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nChars:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextChar:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/io/Console;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Console;Ljava/io/Reader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Console;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cons:Ljava/io/Console;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "echoOff:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cs:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter:Ljava/util/Formatter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/Writer;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pw:Ljava/io/PrintWriter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rcb:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reader:Ljava/io/Reader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetrcb(Ljava/io/Console;)[C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetreadLock(Ljava/io/Console;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgrow(Ljava/io/Console;)[C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "console()Ljava/io/Console;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "echo(Z)Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoding()Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "grow()[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "istty()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readline(Z)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/Console;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printf(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/Console;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readPassword()[C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readPassword(Ljava/lang/String;[Ljava/lang/Object;)[C": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reader()Ljava/io/Reader;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writer()Ljava/io/PrintWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DataInput;": {"fields": {}, "methods": {"readBoolean()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readByte()B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChar()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDouble()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloat()F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInt()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShort()S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUTF()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedByte()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedShort()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBytes(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DataInputStream;": {"fields": {"bytearr:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chararr:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lineBuffer:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readBuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUTF(Ljava/io/DataInput;)Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readByte()B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChar()C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDouble()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloat()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInt()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShort()S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUTF()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedByte()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedShort()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBytes(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DataOutput;": {"fields": {}, "methods": {"write(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBoolean(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeByte(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChar(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDouble(D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloat(F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInt(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLong(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShort(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeUTF(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DataOutputStream;": {"fields": {"bytearr:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "written:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incCount(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeUTF(Ljava/lang/String;Ljava/io/DataOutput;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBoolean(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeByte(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChar(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDouble(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloat(F)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInt(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLong(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShort(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeUTF(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DefaultFileSystem;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileSystem()Ljava/io/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/DeleteOnExitHook$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/DeleteOnExitHook;": {"fields": {"files:Ljava/util/LinkedHashSet;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/String;)V": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runHooks()V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/EOFException;": {"fields": {"serialVersionUID:J": {"value": "0x5949a7f76b53ec41L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ExpiringCache$1;": {"fields": {"this$0:Ljava/io/ExpiringCache;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ExpiringCache;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeEldestEntry(Ljava/util/Map$Entry;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ExpiringCache$Entry;": {"fields": {"timestamp:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimestamp(J)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setVal(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timestamp()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ExpiringCache;": {"fields": {"MAX_ENTRIES:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "millisUntilExpiration:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryOverflow:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetMAX_ENTRIES(Ljava/io/ExpiringCache;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entryFor(Ljava/lang/String;)Ljava/io/ExpiringCache$Entry;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/Externalizable;": {"fields": {}, "methods": {"readExternal(Ljava/io/ObjectInput;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/File$PathStatus;": {"fields": {"$VALUES:[Ljava/io/File$PathStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHECKED:Ljava/io/File$PathStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVALID:Ljava/io/File$PathStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/io/File$PathStatus;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/io/File$PathStatus;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/File$TempDirectory;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateFile(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/File;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PATH_OFFSET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PREFIX_LENGTH_OFFSET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSAFE:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fs:Ljava/io/FileSystem;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "pathSeparator:Ljava/lang/String;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pathSeparatorChar:C": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "separator:Ljava/lang/String;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "separatorChar:C": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x42da4450e0de4ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "filePath:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "prefixLength:I": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "status:Ljava/io/File$PathStatus;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/io/File;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/URI;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempFile(Ljava/lang/String;Ljava/lang/String;)Ljava/io/File;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempFile(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listRoots()[Ljava/io/File;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "slashify(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "canExecute()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canRead()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canWrite()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/io/File;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createNewFile()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteOnExit()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exists()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAbsoluteFile()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAbsolutePath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCanonicalFile()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCanonicalPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFreeSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParentFile()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrefixLength()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTotalSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUsableSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAbsolute()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirectory()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFile()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHidden()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInvalid()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastModified()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/io/FilenameFilter;)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listFiles()[Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listFiles(Ljava/io/FileFilter;)[Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listFiles(Ljava/io/FilenameFilter;)[Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mkdir()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mkdirs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "renameTo(Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExecutable(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExecutable(ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLastModified(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadable(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadable(ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWritable(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWritable(ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPath()Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toURI()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileDescriptor$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/io/FileDescriptor;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHandle(Ljava/io/FileDescriptor;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/io/FileDescriptor;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHandle(Ljava/io/FileDescriptor;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/FileDescriptor;": {"fields": {"NO_OWNER:J": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "err:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "in:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "out:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descriptor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "ownerId:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "releaseLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdescriptor(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputdescriptor(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSocket(I)Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneForFork()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt$()I": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getOwnerId$()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSocket$()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "release$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInt$(I)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "setOwnerId$(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sync()V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileFilter;": {"fields": {}, "methods": {"accept(Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileInputStream$UseManualSkipException;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/FileInputStream;": {"fields": {"channel:Ljava/nio/channels/FileChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFdOwner:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tracker:Llibcore/io/IoTracker;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available0()I": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip0(J)J": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "-0xc75d4291fde951cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/FileOutputStream;": {"fields": {"append:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "channel:Ljava/nio/channels/FileChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFdOwner:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tracker:Llibcore/io/IoTracker;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilePermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileReader;": {"fields": {}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FileSystem;": {"fields": {"ACCESS_EXECUTE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ACCESS_OK:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ACCESS_READ:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ACCESS_WRITE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BA_DIRECTORY:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BA_EXISTS:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BA_HIDDEN:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BA_REGULAR:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPACE_FREE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPACE_TOTAL:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPACE_USABLE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useCanonCaches:Z": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useCanonPrefixCache:Z": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBooleanProperty(Ljava/lang/String;Z)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalize(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkAccess(Ljava/io/File;I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "compare(Ljava/io/File;Ljava/io/File;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "createDirectory(Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "createFileExclusively(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "fromURIPath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBooleanAttributes(Ljava/io/File;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDefaultParent()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getLastModifiedTime(Ljava/io/File;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getLength(Ljava/io/File;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getPathSeparator()C": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSeparator()C": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSpace(Ljava/io/File;I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode(Ljava/io/File;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isAbsolute(Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "list(Ljava/io/File;)[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "listRoots()[Ljava/io/File;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "normalize(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "prefixLength(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "rename(Ljava/io/File;Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "resolve(Ljava/io/File;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "resolve(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "setLastModifiedTime(Ljava/io/File;J)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "setPermission(Ljava/io/File;IZZ)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "setReadOnly(Ljava/io/File;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Ljava/io/FileWriter;": {"fields": {}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilenameFilter;": {"fields": {}, "methods": {"accept(Ljava/io/File;Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilterInputStream;": {"fields": {"in:Ljava/io/InputStream;": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilterOutputStream;": {"fields": {"closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:Ljava/io/OutputStream;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilterReader;": {"fields": {"in:Ljava/io/Reader;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/Reader;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/FilterWriter;": {"fields": {"out:Ljava/io/Writer;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/Writer;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Flushable;": {"fields": {}, "methods": {"flush()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/IOError;": {"fields": {"serialVersionUID:J": {"value": "0xee63f0410b0d9dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/IOException;": {"fields": {"serialVersionUID:J": {"value": "0x6c8073646525f0abL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/InputStream$1;": {"fields": {"closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAllBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNBytes([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNBytes(I)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(Ljava/io/OutputStream;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/InputStream;": {"fields": {"DEFAULT_BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_BUFFER_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_SKIP_BUFFER_SIZE:I": {"value": "0x800", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullInputStream()Ljava/io/InputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAllBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNBytes([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNBytes(I)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(Ljava/io/OutputStream;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/InputStreamReader;": {"fields": {"sd:Lsun/nio/cs/StreamDecoder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/nio/charset/CharsetDecoder;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/InterruptedIOException;": {"fields": {"serialVersionUID:J": {"value": "0x37cbedb690cd3f17L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "bytesTransferred:I": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/InvalidClassException;": {"fields": {"serialVersionUID:J": {"value": "-0x3c23083669749950L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "classname:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/InvalidObjectException;": {"fields": {"serialVersionUID:J": {"value": "0x2cde8ae9921ad3dfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/LineNumberInputStream;": {"fields": {"lineNumber:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markLineNumber:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markPushBack:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushBack:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLineNumber()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLineNumber(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/NotActiveException;": {"fields": {"serialVersionUID:J": {"value": "-0x36085fdb3abe1fffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/LineNumberReader;": {"fields": {"maxSkipBufferSize:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lineNumber:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markedLineNumber:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markedSkipLF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipBuffer:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipLF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Reader;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLineNumber()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLineNumber(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/NotSerializableException;": {"fields": {"serialVersionUID:J": {"value": "0x28567800e7861635L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInput;": {"fields": {}, "methods": {"available()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputStream$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkArray(Ljava/io/ObjectInputStream;Ljava/lang/Class;I)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$1;": {"fields": {"val$subcl:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputStream$BlockDataInputStream;": {"fields": {"CHAR_BUF_SIZE:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEADER_BLOCKED:I": {"value": "-0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BLOCK_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_HEADER_SIZE:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "blkmode:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cbuf:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "din:Ljava/io/DataInputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hbuf:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:Ljava/io/ObjectInputStream$PeekInputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/io/ObjectInputStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unread:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectInputStream;Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readBlockHeader(Z)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUTFBody(J)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUTFChar(Ljava/lang/StringBuilder;J)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUTFSpan(Ljava/lang/StringBuilder;J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "refill()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "currentBlockRemaining()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBlockDataMode()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytesRead()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peek()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peekByte()B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BIIZ)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBooleans([ZII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readByte()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChar()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChars([CII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDoubles([DII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloats([FII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readFully([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BIIZ)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInts([III)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLongUTF()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLongs([JII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readShort()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShorts([SII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUTF()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedByte()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedShort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlockDataMode(Z)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBlockData()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipBytes(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputStream$Caches;": {"fields": {"subclassAudits:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subclassAuditsQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$GetField;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaulted(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;B)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;C)C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;D)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;F)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;S)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Z)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObjectStreamClass()Ljava/io/ObjectStreamClass;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputStream$GetFieldImpl;": {"fields": {"desc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objHandles:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objVals:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primVals:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/io/ObjectInputStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectInputStream;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFieldOffset(Ljava/lang/String;Ljava/lang/Class;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaulted(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;B)B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;C)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;D)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;F)F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;S)S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObjectStreamClass()Ljava/io/ObjectStreamClass;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFields()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$HandleTable$HandleList;": {"fields": {"list:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$HandleTable;": {"fields": {"STATUS_EXCEPTION:B": {"value": "0x3t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATUS_OK:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATUS_UNKNOWN:B": {"value": "0x2t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deps:[Ljava/io/ObjectInputStream$HandleTable$HandleList;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entries:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowDep:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "status:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assign(Ljava/lang/Object;)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finish(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupException(I)Ljava/lang/ClassNotFoundException;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupObject(I)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markDependency(II)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "markException(ILjava/lang/ClassNotFoundException;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setObject(ILjava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$PeekInputStream;": {"fields": {"in:Ljava/io/InputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peekb:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "totalBytesRead:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytesRead()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peek()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputStream$ValidationList$1;": {"fields": {"this$0:Ljava/io/ObjectInputStream$ValidationList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectInputStream$ValidationList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$ValidationList$Callback;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/io/ObjectInputStream$ValidationList$Callback;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "obj:Ljava/io/ObjectInputValidation;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "priority:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectInputValidation;ILjava/io/ObjectInputStream$ValidationList$Callback;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream$ValidationList;": {"fields": {"list:Ljava/io/ObjectInputStream$ValidationList$Callback;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetlist(Ljava/io/ObjectInputStream$ValidationList;)Ljava/io/ObjectInputStream$ValidationList$Callback;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doCallbacks()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "register(Ljava/io/ObjectInputValidation;I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectInputStream;": {"fields": {"NULL_HANDLE:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primClasses:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unsharedMarker:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bin:Ljava/io/ObjectInputStream$BlockDataInputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "curContext:Ljava/io/SerialCallbackContext;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultDataEnd:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "depth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enableOverride:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enableResolve:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handles:Ljava/io/ObjectInputStream$HandleTable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "passHandle:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primVals:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vlist:Ljava/io/ObjectInputStream$ValidationList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"$r8$lambda$K0PvN7fRKKqspNXBubLs-UGNdhY(Ljava/io/ObjectInputStream;Ljava/lang/Class;I)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetbin(Ljava/io/ObjectInputStream;)Ljava/io/ObjectInputStream$BlockDataInputStream;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetdefaultDataEnd(Ljava/io/ObjectInputStream;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgethandles(Ljava/io/ObjectInputStream;)Ljava/io/ObjectInputStream$HandleTable;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetpassHandle(Ljava/io/ObjectInputStream;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputpassHandle(Ljava/io/ObjectInputStream;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mhandleReset(Ljava/io/ObjectInputStream;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mreadObject0(Ljava/io/ObjectInputStream;Z)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smbytesToDoubles([BI[DII)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smbytesToFloats([BI[FII)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "auditSubclass(Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bytesToDoubles([BI[DII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "bytesToFloats([BI[FII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkArray(Ljava/lang/Class;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkResolve(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneArray(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultReadFields(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handleReset()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCustomSubclass()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "latestUserDefinedLoader()Ljava/lang/ClassLoader;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readArray(Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readClass(Z)Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readClassDesc(Z)Ljava/io/ObjectStreamClass;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readEnum(Z)Ljava/lang/Enum;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternalData(Ljava/io/Externalizable;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readFatalException()Ljava/io/IOException;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readHandle(Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readNonProxyDesc(Z)Ljava/io/ObjectStreamClass;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readNull()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject0(Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readOrdinaryObject(Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readProxyDesc(Z)Ljava/io/ObjectStreamClass;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readSerialData(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readString(Z)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipCustomData()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifySubclass()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultReadObject()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enableResolveObject(Z)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readByte()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChar()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readClassDescriptor()Ljava/io/ObjectStreamClass;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFields()Ljava/io/ObjectInputStream$GetField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObjectOverride()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShort()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readStreamHeader()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readTypeString()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUTF()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnshared()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedByte()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedShort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerValidation(Ljava/io/ObjectInputValidation;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveClass(Ljava/io/ObjectStreamClass;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveProxyClass([Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBytes(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectInputValidation;": {"fields": {}, "methods": {"validateObject()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectOutput;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectOutputStream$1;": {"fields": {"val$subcl:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectOutputStream$BlockDataOutputStream;": {"fields": {"CHAR_BUF_SIZE:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BLOCK_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_HEADER_SIZE:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "blkmode:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cbuf:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dout:Ljava/io/DataOutputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hbuf:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "warnOnceWhenWriting:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "warnIfClosed()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBlockHeader(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeUTFBody(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drain()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlockDataMode()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUTFLength(Ljava/lang/String;)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setBlockDataMode(Z)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BIIZ)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBoolean(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBooleans([ZII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeByte(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChar(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars([CII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeDouble(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDoubles([DII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeFloat(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloats([FII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeInt(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInts([III)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLong(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLongUTF(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLongUTF(Ljava/lang/String;J)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLongs([JII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeShort(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShorts([SII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeUTF(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeUTF(Ljava/lang/String;J)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectOutputStream$Caches;": {"fields": {"subclassAudits:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subclassAuditsQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectOutputStream$DebugTraceInfoStack;": {"fields": {"stack:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pop()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "push(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectOutputStream$HandleTable;": {"fields": {"loadFactor:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objs:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spine:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IF)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "growEntries()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "growSpine()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(Ljava/lang/Object;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assign(Ljava/lang/Object;)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookup(Ljava/lang/Object;)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectOutputStream$PutField;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;C)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;S)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/ObjectOutput;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectOutputStream$PutFieldImpl;": {"fields": {"desc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objVals:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primVals:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/io/ObjectOutputStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectOutputStream;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFieldOffset(Ljava/lang/String;Ljava/lang/Class;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(Ljava/lang/String;B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;S)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/ObjectOutput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFields()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectOutputStream$ReplaceTable;": {"fields": {"htab:Ljava/io/ObjectOutputStream$HandleTable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reps:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IF)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assign(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookup(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectOutputStream;": {"fields": {"extendedDebugInfo:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bout:Ljava/io/ObjectOutputStream$BlockDataOutputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "curContext:Ljava/io/SerialCallbackContext;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "curPut:Ljava/io/ObjectOutputStream$PutFieldImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debugInfoStack:Ljava/io/ObjectOutputStream$DebugTraceInfoStack;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "depth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enableOverride:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enableReplace:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handles:Ljava/io/ObjectOutputStream$HandleTable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primVals:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protocol:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "subs:Ljava/io/ObjectOutputStream$ReplaceTable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetbout(Ljava/io/ObjectOutputStream;)Ljava/io/ObjectOutputStream$BlockDataOutputStream;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mwriteObject0(Ljava/io/ObjectOutputStream;Ljava/lang/Object;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smdoublesToBytes([DI[BII)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smfloatsToBytes([FI[BII)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "auditSubclass(Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultWriteFields(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doublesToBytes([DI[BII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "floatsToBytes([FI[BII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCustomSubclass()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifySubclass()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeArray(Ljava/lang/Object;Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeClass(Ljava/lang/Class;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeClassDesc(Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeEnum(Ljava/lang/Enum;Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeExternalData(Ljava/io/Externalizable;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeFatalException(Ljava/io/IOException;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeHandle(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeNonProxyDesc(Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeNull()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject0(Ljava/lang/Object;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeOrdinaryObject(Ljava/lang/Object;Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeProxyDesc(Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeSerialData(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeString(Ljava/lang/String;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "annotateClass(Ljava/lang/Class;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "annotateProxyClass(Ljava/lang/Class;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultWriteObject()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drain()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enableReplaceObject(Z)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtocolVersion()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putFields()Ljava/io/ObjectOutputStream$PutField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useProtocolVersion(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBoolean(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeByte(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChar(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeClassDescriptor(Ljava/io/ObjectStreamClass;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDouble(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFields()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloat(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInt(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLong(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObjectOverride(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShort(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeStreamHeader()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeTypeString(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeUTF(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeUnshared(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "warnDefaultSUIDTargetVersionDependent(Ljava/lang/Class;J)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$1;": {"fields": {"this$0:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectStreamClass;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Long;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$2;": {"fields": {"this$0:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$cl:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectStreamClass;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/io/ObjectStreamClass$MemberSignature;Ljava/io/ObjectStreamClass$MemberSignature;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$4;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/io/ObjectStreamClass$MemberSignature;Ljava/io/ObjectStreamClass$MemberSignature;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$5;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/io/ObjectStreamClass$MemberSignature;Ljava/io/ObjectStreamClass$MemberSignature;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$Caches;": {"fields": {"localDescs:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localDescsQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reflectors:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reflectorsQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetlocalDescsQueue()Ljava/lang/ref/ReferenceQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetreflectorsQueue()Ljava/lang/ref/ReferenceQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$ClassDataSlot;": {"fields": {"desc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasData:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$DefaultSUIDCompatibilityListener;": {"fields": {}, "methods": {"warnDefaultSUIDTargetVersionDependent(Ljava/lang/Class;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$EntryFuture$1;": {"fields": {"this$0:Ljava/io/ObjectStreamClass$EntryFuture;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/ObjectStreamClass$EntryFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$EntryFuture-IA;": {"fields": {}, "methods": {}}, "Ljava/io/ObjectStreamClass$EntryFuture;": {"fields": {"unset:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entry:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "owner:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/ObjectStreamClass$EntryFuture-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOwner()Ljava/lang/Thread;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/lang/Object;)Z": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$ExceptionInfo;": {"fields": {"className:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "message:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInvalidClassException()Ljava/io/InvalidClassException;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$FieldReflector;": {"fields": {"unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numPrimFields:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsets:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readKeys:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCodes:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "types:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeKeys:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/io/ObjectStreamField;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFields()[Ljava/io/ObjectStreamField;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getObjFieldValues(Ljava/lang/Object;[Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrimFieldValues(Ljava/lang/Object;[B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setObjFieldValues(Ljava/lang/Object;[Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setPrimFieldValues(Ljava/lang/Object;[B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$FieldReflectorKey;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nullClass:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sigs:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;[Ljava/io/ObjectStreamField;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass$MemberSignature;": {"fields": {"member:Ljava/lang/reflect/Member;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signature:Ljava/lang/String;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/reflect/Constructor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/Field;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/Method;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamClass$WeakClassKey;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamClass;": {"fields": {"MAX_SDK_TARGET_FOR_CLINIT_UIDGEN_WORKAROUND:I": {"value": "0x17", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NO_FIELDS:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x54f190e511018478L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "suidCompatibilityListener:Ljava/io/ObjectStreamClass$DefaultSUIDCompatibilityListener;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cl:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cons:Ljava/lang/reflect/Constructor;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dataLayout:[Ljava/io/ObjectStreamClass$ClassDataSlot;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultSerializeEx:Ljava/io/ObjectStreamClass$ExceptionInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deserializeEx:Ljava/io/ObjectStreamClass$ExceptionInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "externalizable:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fieldRefl:Ljava/io/ObjectStreamClass$FieldReflector;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasBlockExternalData:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasWriteObjectData:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEnum:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isProxy:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localDesc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numObjFields:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primDataSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObjectMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObjectNoDataMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolveMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveEx:Ljava/lang/ClassNotFoundException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serializable:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serializeEx:Ljava/io/ObjectStreamClass$ExceptionInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "suid:Ljava/lang/Long;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "superDesc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObjectMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplaceMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetcl(Ljava/io/ObjectStreamClass;)Ljava/lang/Class;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetexternalizable(Ljava/io/ObjectStreamClass;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetisEnum(Ljava/io/ObjectStreamClass;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwriteObjectMethod(Ljava/io/ObjectStreamClass;)Ljava/lang/reflect/Method;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputcons(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Constructor;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputdeserializeEx(Ljava/io/ObjectStreamClass;Ljava/io/ObjectStreamClass$ExceptionInfo;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputfields(Ljava/io/ObjectStreamClass;[Ljava/io/ObjectStreamField;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputhasWriteObjectData(Ljava/io/ObjectStreamClass;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputreadObjectMethod(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Method;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputreadObjectNoDataMethod(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Method;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputreadResolveMethod(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Method;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputserializeEx(Ljava/io/ObjectStreamClass;Ljava/io/ObjectStreamClass$ExceptionInfo;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputsuid(Ljava/io/ObjectStreamClass;Ljava/lang/Long;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputwriteObjectMethod(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Method;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputwriteReplaceMethod(Ljava/io/ObjectStreamClass;Ljava/lang/reflect/Method;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mcomputeFieldOffsets(Ljava/io/ObjectStreamClass;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smcomputeDefaultSUID(Ljava/lang/Class;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetClassSignature(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetDeclaredSUID(Ljava/lang/Class;)Ljava/lang/Long;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetExternalizableConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetInheritableMethod(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetMethodSignature([Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetPrivateMethod(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetSerialFields(Ljava/lang/Class;)[Ljava/io/ObjectStreamField;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetSerializableConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classNamesEqual(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "computeDefaultSUID(Ljava/lang/Class;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "computeFieldOffsets()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getClassDataLayout0()[Ljava/io/ObjectStreamClass$ClassDataSlot;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassSignature(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getConstructorId(Ljava/lang/Class;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDeclaredSUID(Ljava/lang/Class;)Ljava/lang/Long;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredSerialFields(Ljava/lang/Class;)[Ljava/io/ObjectStreamField;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefaultSerialFields(Ljava/lang/Class;)[Ljava/io/ObjectStreamField;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExternalizableConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInheritableMethod(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMethodSignature([Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPackageName(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrivateMethod(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getReflector([Ljava/io/ObjectStreamField;Ljava/io/ObjectStreamClass;)Ljava/io/ObjectStreamClass$FieldReflector;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSerialFields(Ljava/lang/Class;)[Ljava/io/ObjectStreamField;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSerializableConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getVariantFor(Ljava/lang/Class;)Ljava/io/ObjectStreamClass;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasStaticInitializer(Ljava/lang/Class;Z)Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$static$0(Ljava/lang/Class;J)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookup(Ljava/lang/Class;)Ljava/io/ObjectStreamClass;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookup(Ljava/lang/Class;Z)Ljava/io/ObjectStreamClass;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupAny(Ljava/lang/Class;)Ljava/io/ObjectStreamClass;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matchFields([Ljava/io/ObjectStreamField;Ljava/io/ObjectStreamClass;)[Ljava/io/ObjectStreamField;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance(Ljava/lang/Class;J)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "packageEquals(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processQueue(Ljava/lang/ref/ReferenceQueue;Ljava/util/concurrent/ConcurrentMap;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requireInitialized()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwMiscException(Ljava/lang/Throwable;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkDefaultSerialize()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkDeserialize()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSerialize()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassDataLayout()[Ljava/io/ObjectStreamClass$ClassDataSlot;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getField(Ljava/lang/String;)Ljava/io/ObjectStreamField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getField(Ljava/lang/String;Ljava/lang/Class;)Ljava/io/ObjectStreamField;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFields()[Ljava/io/ObjectStreamField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFields(Z)[Ljava/io/ObjectStreamField;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocalDesc()Ljava/io/ObjectStreamClass;": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumObjFields()I": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getObjFieldValues(Ljava/lang/Object;[Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrimDataSize()I": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getPrimFieldValues(Ljava/lang/Object;[B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getResolveException()Ljava/lang/ClassNotFoundException;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSerialVersionUID()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSuperDesc()Ljava/io/ObjectStreamClass;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasBlockExternalData()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasReadObjectMethod()Z": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasReadObjectNoDataMethod()Z": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasReadResolveMethod()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasWriteObjectData()Z": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasWriteObjectMethod()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasWriteReplaceMethod()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initNonProxy(Ljava/io/ObjectStreamClass;Ljava/lang/Class;Ljava/lang/ClassNotFoundException;Ljava/io/ObjectStreamClass;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initProxy(Ljava/lang/Class;Ljava/lang/ClassNotFoundException;Ljava/io/ObjectStreamClass;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeReadObject(Ljava/lang/Object;Ljava/io/ObjectInputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeReadObjectNoData(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeReadResolve(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeWriteObject(Ljava/lang/Object;Ljava/io/ObjectOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeWriteReplace(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEnum()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isExternalizable()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isInstantiable()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isProxy()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSerializable()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "readNonProxy(Ljava/io/ObjectInputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setObjFieldValues(Ljava/lang/Object;[Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setPrimFieldValues(Ljava/lang/Object;[B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeNonProxy(Ljava/io/ObjectOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamConstants;": {"fields": {"PROTOCOL_VERSION_1:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROTOCOL_VERSION_2:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SC_BLOCK_DATA:B": {"value": "0x8t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SC_ENUM:B": {"value": "0x10t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SC_EXTERNALIZABLE:B": {"value": "0x4t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SC_SERIALIZABLE:B": {"value": "0x2t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SC_WRITE_METHOD:B": {"value": "0x1t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STREAM_MAGIC:S": {"value": "-0x5313s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STREAM_VERSION:S": {"value": "0x5s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUBCLASS_IMPLEMENTATION_PERMISSION:Ljava/io/SerializablePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUBSTITUTION_PERMISSION:Ljava/io/SerializablePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_ARRAY:B": {"value": "0x75t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_BASE:B": {"value": "0x70t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_BLOCKDATA:B": {"value": "0x77t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_BLOCKDATALONG:B": {"value": "0x7at", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_CLASS:B": {"value": "0x76t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_CLASSDESC:B": {"value": "0x72t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_ENDBLOCKDATA:B": {"value": "0x78t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_ENUM:B": {"value": "0x7et", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_EXCEPTION:B": {"value": "0x7bt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_LONGSTRING:B": {"value": "0x7ct", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_MAX:B": {"value": "0x7et", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_NULL:B": {"value": "0x70t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_OBJECT:B": {"value": "0x73t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_PROXYCLASSDESC:B": {"value": "0x7dt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_REFERENCE:B": {"value": "0x71t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_RESET:B": {"value": "0x79t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TC_STRING:B": {"value": "0x74t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "baseWireHandle:I": {"value": "0x7e0000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/ObjectStreamException;": {"fields": {"serialVersionUID:J": {"value": "0x64c3e46b8d39fbdfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/ObjectStreamField;": {"fields": {"field:Ljava/lang/reflect/Field;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signature:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unshared:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Class;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/Field;ZZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassSignature(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getField()Ljava/lang/reflect/Field;": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeCode()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPrimitive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnshared()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOffset(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/OptionalDataException;": {"fields": {"serialVersionUID:J": {"value": "-0x6f2d38e4604bc55cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "eof:Z": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length:I": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/OutputStream$1;": {"fields": {"closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/OutputStream;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/OutputStreamWriter;": {"fields": {"se:Lsun/nio/cs/StreamEncoder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/nio/charset/CharsetEncoder;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushBuffer()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PipedInputStream;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_PIPE_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PIPE_SIZE:I": {"value": "0x400", "other": [".field", "protected", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "buffer:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closedByReader:Z": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closedByWriter:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connected:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "out:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSide:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeSide:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedOutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedOutputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitSpace()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkStateForReceive()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initPipe(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/io/PipedOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(I)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive([BII)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "receivedLast()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/PipedOutputStream;": {"fields": {"sink:Ljava/io/PipedInputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/io/PipedInputStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PipedReader;": {"fields": {"DEFAULT_PIPE_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buffer:[C": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closedByReader:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closedByWriter:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connected:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readSide:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeSide:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedWriter;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedWriter;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initPipe(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/io/PipedWriter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(I)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "receive([CII)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "receivedLast()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/PipedWriter;": {"fields": {"closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sink:Ljava/io/PipedReader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PipedReader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/io/PipedReader;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PrintStream;": {"fields": {"autoFlush:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charOut:Ljava/io/OutputStreamWriter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charset:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closing:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter:Ljava/util/Formatter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "textOut:Ljava/io/BufferedWriter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trouble:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;ZLjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;ZLjava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ZLjava/io/OutputStream;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(ZLjava/nio/charset/Charset;Ljava/io/OutputStream;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTextOut()Ljava/io/BufferedWriter;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newLine()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requireNonNull(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharset(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "write(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "write([C)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(C)Ljava/io/PrintStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/PrintStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/PrintStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkError()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearError()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printf(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printf(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setError()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PrintWriter;": {"fields": {"autoFlush:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter:Ljava/util/Formatter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/Writer;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "psOut:Ljava/io/PrintStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trouble:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;ZLjava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Writer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Writer;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/charset/Charset;Ljava/io/File;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newLine()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharset(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(C)Ljava/io/PrintWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/PrintWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/PrintWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkError()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearError()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "print([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printf(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printf(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintWriter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "println([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setError()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PushbackInputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/PushbackReader;": {"fields": {"buf:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Reader;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unread([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/RandomAccessFile;": {"fields": {"FLUSH_FDATASYNC:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLUSH_FSYNC:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLUSH_NONE:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "channel:Ljava/nio/channels/FileChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "flushAfterWrite:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ioTracker:Llibcore/io/IoTracker;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rw:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scratch:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "maybeSync()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readBytes([BII)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBytes([BII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFilePointer()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readByte()B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readChar()C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDouble()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloat()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFully([BII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInt()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShort()S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUTF()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedByte()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readUnsignedShort()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "seek(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLength(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBytes(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBoolean(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeByte(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChar(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeChars(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDouble(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloat(F)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInt(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLong(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShort(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeUTF(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Reader$1;": {"fields": {"closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/CharBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(Ljava/io/Writer;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Reader;": {"fields": {"TRANSFER_BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxSkipBufferSize:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipBuffer:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullReader()Ljava/io/Reader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/CharBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([C)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(Ljava/io/Writer;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/SequenceInputStream;": {"fields": {"e:Ljava/util/Enumeration;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:Ljava/io/InputStream;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Enumeration;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextStream()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/SerialCallbackContext;": {"fields": {"desc:Ljava/io/ObjectStreamClass;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "obj:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/io/ObjectStreamClass;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkAndSetUsed()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "check()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDesc()Ljava/io/ObjectStreamClass;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getObj()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setUsed()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/io/Serializable;": {"fields": {}, "methods": {}}, "Ljava/io/SerializablePermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/StreamTokenizer;": {"fields": {"CT_ALPHA:B": {"value": "0x4t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CT_COMMENT:B": {"value": "0x10t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CT_DIGIT:B": {"value": "0x2t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CT_QUOTE:B": {"value": "0x8t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CT_WHITESPACE:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEED_CHAR:I": {"value": "0x7fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SKIP_LF:I": {"value": "0x7ffffffe", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TT_EOF:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TT_EOL:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TT_NOTHING:I": {"value": "-0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TT_NUMBER:I": {"value": "-0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TT_WORD:I": {"value": "-0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LINENO:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctype:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eolIsSignificantP:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forceLower:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "input:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nval:D": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekc:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushedBack:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reader:Ljava/io/Reader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slashSlashCommentsP:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slashStarCommentsP:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sval:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ttype:I": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "commentChar(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eolIsSignificant(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lineno()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerCaseMode(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextToken()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ordinaryChar(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ordinaryChars(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseNumbers()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pushBack()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quoteChar(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resetSyntax()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slashSlashComments(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slashStarComments(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whitespaceChars(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wordChars(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/StreamCorruptedException;": {"fields": {"serialVersionUID:J": {"value": "0x7cac02968639f3c2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/StringBufferInputStream;": {"fields": {"buffer:Ljava/lang/String;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pos:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/StringReader;": {"fields": {"length:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mark:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "str:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/StringWriter;": {"fields": {"buf:Ljava/lang/StringBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/StringWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/StringWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/StringWriter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/Writer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBuffer()Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/SyncFailedException;": {"fields": {"serialVersionUID:J": {"value": "-0x20a8c0b3f32afac2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/UTFDataFormatException;": {"fields": {"serialVersionUID:J": {"value": "0x5d6c7f018d30324L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/UncheckedIOException;": {"fields": {"serialVersionUID:J": {"value": "-0x70e2db5b2e06cae9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/IOException;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/io/IOException;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getCause()Ljava/io/IOException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/UnixFileSystem;": {"fields": {"cache:Ljava/io/ExpiringCache;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "colon:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaHome:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaHomePrefixCache:Ljava/io/ExpiringCache;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "slash:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalize0(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createDirectory0(Ljava/io/File;)Z": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createFileExclusively0(Ljava/lang/String;)Z": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBooleanAttributes0(Ljava/lang/String;)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastModifiedTime0(Ljava/io/File;)J": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSpace0(Ljava/io/File;I)J": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list0(Ljava/io/File;)[Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parentOrNull(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLastModifiedTime0(Ljava/io/File;J)Z": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPermission0(Ljava/io/File;IZZ)Z": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReadOnly0(Ljava/io/File;)Z": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalize(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAccess(Ljava/io/File;I)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/io/File;Ljava/io/File;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createDirectory(Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createFileExclusively(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromURIPath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBooleanAttributes(Ljava/io/File;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefaultParent()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastModifiedTime(Ljava/io/File;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLength(Ljava/io/File;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPathSeparator()C": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSeparator()C": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSpace(Ljava/io/File;I)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode(Ljava/io/File;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAbsolute(Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list(Ljava/io/File;)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listRoots()[Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prefixLength(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rename(Ljava/io/File;Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/io/File;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLastModifiedTime(Ljava/io/File;J)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPermission(Ljava/io/File;IZZ)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReadOnly(Ljava/io/File;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/io/UnsupportedEncodingException;": {"fields": {"serialVersionUID:J": {"value": "-0x3b5147a5b199d75eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/WriteAbortedException;": {"fields": {"serialVersionUID:J": {"value": "-0x2e29d7644e20988aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "detail:Ljava/lang/Exception;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/lang/String;Ljava/lang/Exception;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Writer$1;": {"fields": {"closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(C)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/io/Writer;": {"fields": {"WRITE_BUFFER_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBuffer:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullWriter()Ljava/io/Writer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/io/Writer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/AbstractMethodError;": {"fields": {"serialVersionUID:J": {"value": "-0x16f593ecb5225d5eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/AbstractStringBuilder;": {"fields": {"MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:[C": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendNull()Ljava/lang/AbstractStringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureCapacityInternal(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newCapacity(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reverseAllValidSurrogatePairs()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(D)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(F)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(J)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/AbstractStringBuilder;)Ljava/lang/AbstractStringBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/StringBuffer;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Z)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append([C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append([CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendCodePoint(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "capacity()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charAt(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "codePointBefore(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "codePointCount(II)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delete(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deleteCharAt(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureCapacity(I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChars(II[CI)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue()[C": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(IC)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(ID)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(IF)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(IJ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(ILjava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(ILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(IZ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(I[C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insert(I[CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastIndexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastIndexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints(II)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replace(IILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reverse()Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCharAt(IC)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setLength(I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "substring(II)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trimToSize()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Appendable;": {"fields": {}, "methods": {"append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ArithmeticException;": {"fields": {"serialVersionUID:J": {"value": "0x1f509e624af9f007L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ArrayIndexOutOfBoundsException;": {"fields": {"serialVersionUID:J": {"value": "-0x47000adea8815bbcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ArrayStoreException;": {"fields": {"serialVersionUID:J": {"value": "-0x3ec20f6240af4121L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/AssertionError;": {"fields": {"serialVersionUID:J": {"value": "-0x4592d15402bec21aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(F)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/AutoCloseable;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Boolean;": {"fields": {"FALSE:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRUE:Ljava/lang/Boolean;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x32df8d7f2a630512L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(ZZ)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(Z)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logicalAnd(ZZ)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logicalOr(ZZ)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logicalXor(ZZ)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseBoolean(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Z)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Boolean;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Z)Ljava/lang/Boolean;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "booleanValue()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Boolean;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/BootClassLoader;": {"fields": {"instance:Ljava/lang/BootClassLoader;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance()Ljava/lang/BootClassLoader;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackage(Ljava/lang/String;)Ljava/lang/Package;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadClass(Ljava/lang/String;Z)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/BootstrapMethodError;": {"fields": {"serialVersionUID:J": {"value": "0x124L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Byte$ByteCache;": {"fields": {"cache:[Ljava/lang/Byte;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Byte;": {"fields": {"BYTES:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:B": {"value": "0x7ft", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:B": {"value": "-0x80t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x63b19f7b11af0ae4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(BB)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned(BB)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)Ljava/lang/Byte;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseByte(Ljava/lang/String;)B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseByte(Ljava/lang/String;I)B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString(BZ)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString(B)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedInt(B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedLong(B)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(B)Ljava/lang/Byte;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Byte;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;I)Ljava/lang/Byte;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Byte;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CharSequence$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CharSequence$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CharSequence$1CharIterator;": {"fields": {"cur:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CharSequence$1CodePointIterator;": {"fields": {"cur:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CharSequence;": {"fields": {}, "methods": {"lambda$chars$0(Ljava/lang/CharSequence;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$codePoints$1(Ljava/lang/CharSequence;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "charAt(I)C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chars()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePoints()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Character$CharacterCache;": {"fields": {"cache:[Ljava/lang/Character;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Character$Subset;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Character$UnicodeBlock;": {"fields": {"AEGEAN_NUMBERS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALCHEMICAL_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALPHABETIC_PRESENTATION_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ANCIENT_GREEK_MUSICAL_NOTATION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ANCIENT_GREEK_NUMBERS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ANCIENT_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_MATHEMATICAL_ALPHABETIC_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_PRESENTATION_FORMS_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_PRESENTATION_FORMS_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARABIC_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARMENIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARROWS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AVESTAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BALINESE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BAMUM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BAMUM_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BASIC_LATIN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BATAK:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BENGALI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BLOCK_ELEMENTS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BOPOMOFO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BOPOMOFO_EXTENDED:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BOX_DRAWING:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BRAHMI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BRAILLE_PATTERNS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BUGINESE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BUHID:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BYZANTINE_MUSICAL_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CARIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAKMA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHEROKEE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_COMPATIBILITY:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_COMPATIBILITY_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_COMPATIBILITY_IDEOGRAPHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_RADICALS_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_STROKES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_SYMBOLS_AND_PUNCTUATION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_UNIFIED_IDEOGRAPHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_UNIFIED_IDEOGRAPHS_EXTENSION_C:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CJK_UNIFIED_IDEOGRAPHS_EXTENSION_D:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMBINING_DIACRITICAL_MARKS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMBINING_DIACRITICAL_MARKS_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMBINING_HALF_MARKS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMBINING_MARKS_FOR_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMMON_INDIC_NUMBER_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONTROL_PICTURES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COPTIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COUNTING_ROD_NUMERALS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CUNEIFORM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CUNEIFORM_NUMBERS_AND_PUNCTUATION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CURRENCY_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYPRIOT_SYLLABARY:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYRILLIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYRILLIC_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYRILLIC_EXTENDED_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYRILLIC_SUPPLEMENTARY:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DESERET:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEVANAGARI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEVANAGARI_EXTENDED:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DINGBATS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DOMINO_TILES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EGYPTIAN_HIEROGLYPHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EMOTICONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCLOSED_ALPHANUMERICS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCLOSED_ALPHANUMERIC_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCLOSED_CJK_LETTERS_AND_MONTHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCLOSED_IDEOGRAPHIC_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC_EXTENDED:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GENERAL_PUNCTUATION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GEOMETRIC_SHAPES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GEORGIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GEORGIAN_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GLAGOLITIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GOTHIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GREEK:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GREEK_EXTENDED:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GUJARATI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GURMUKHI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HALFWIDTH_AND_FULLWIDTH_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL_COMPATIBILITY_JAMO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL_JAMO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL_JAMO_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL_JAMO_EXTENDED_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL_SYLLABLES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANUNOO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HEBREW:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HIGH_PRIVATE_USE_SURROGATES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HIGH_SURROGATES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HIRAGANA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IDEOGRAPHIC_DESCRIPTION_CHARACTERS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPERIAL_ARAMAIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSCRIPTIONAL_PAHLAVI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSCRIPTIONAL_PARTHIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IPA_EXTENSIONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAVANESE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KAITHI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANA_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANBUN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANGXI_RADICALS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANNADA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KATAKANA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KATAKANA_PHONETIC_EXTENSIONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KAYAH_LI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHAROSHTHI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHMER:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHMER_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LAO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_1_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_EXTENDED_ADDITIONAL:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_EXTENDED_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_EXTENDED_C:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN_EXTENDED_D:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LEPCHA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LETTERLIKE_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIMBU:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LINEAR_B_IDEOGRAMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LINEAR_B_SYLLABARY:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LISU:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOW_SURROGATES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LYCIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LYDIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAHJONG_TILES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MALAYALAM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MANDAIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MATHEMATICAL_ALPHANUMERIC_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MATHEMATICAL_OPERATORS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEETEI_MAYEK:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEETEI_MAYEK_EXTENSIONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEROITIC_CURSIVE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEROITIC_HIEROGLYPHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIAO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_MATHEMATICAL_SYMBOLS_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_MATHEMATICAL_SYMBOLS_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_SYMBOLS_AND_ARROWS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_SYMBOLS_AND_PICTOGRAPHS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MISCELLANEOUS_TECHNICAL:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MODIFIER_TONE_LETTERS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONGOLIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MUSICAL_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR_EXTENDED_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEW_TAI_LUE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NKO:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NUMBER_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OGHAM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_ITALIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_PERSIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_SOUTH_ARABIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_TURKIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OL_CHIKI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OPTICAL_CHARACTER_RECOGNITION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ORIYA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OSMANYA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHAGS_PA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHAISTOS_DISC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHOENICIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHONETIC_EXTENSIONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHONETIC_EXTENSIONS_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PLAYING_CARDS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIVATE_USE_AREA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REJANG:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUMI_NUMERAL_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUNIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SAMARITAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SAURASHTRA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHARADA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHAVIAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SINHALA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SMALL_FORM_VARIANTS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SORA_SOMPENG:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPACING_MODIFIER_LETTERS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPECIALS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDANESE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDANESE_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPERSCRIPTS_AND_SUBSCRIPTS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTAL_ARROWS_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTAL_ARROWS_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTAL_MATHEMATICAL_OPERATORS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTAL_PUNCTUATION:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTARY_PRIVATE_USE_AREA_A:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPPLEMENTARY_PRIVATE_USE_AREA_B:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SURROGATES_AREA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYLOTI_NAGRI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYRIAC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAGALOG:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAGBANWA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAGS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_LE:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_THAM:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_VIET:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_XUAN_JING_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAKRI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAMIL:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TELUGU:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAANA:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIBETAN:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIFINAGH:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSPORT_AND_MAP_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UGARITIC:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS_EXTENDED:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VAI:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VARIATION_SELECTORS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VARIATION_SELECTORS_SUPPLEMENT:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VEDIC_EXTENSIONS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VERTICAL_FORMS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YIJING_HEXAGRAM_SYMBOLS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YI_RADICALS:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YI_SYLLABLES:Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "blockStarts:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "blocks:[Ljava/lang/Character$UnicodeBlock;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;[Ljava/lang/String;)V": {"other": [".method", "private", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/String;)Ljava/lang/Character$UnicodeBlock;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(C)Ljava/lang/Character$UnicodeBlock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/lang/Character$UnicodeBlock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Character$UnicodeScript;": {"fields": {"$VALUES:[Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARABIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ARMENIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AVESTAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BALINESE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BAMUM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BATAK:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BENGALI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BOPOMOFO:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BRAHMI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BRAILLE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BUGINESE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BUHID:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CANADIAN_ABORIGINAL:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CARIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAKMA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHEROKEE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMMON:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COPTIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CUNEIFORM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYPRIOT:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CYRILLIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DESERET:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEVANAGARI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EGYPTIAN_HIEROGLYPHS:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ETHIOPIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GEORGIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GLAGOLITIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GOTHIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GREEK:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GUJARATI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GURMUKHI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANGUL:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HANUNOO:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HEBREW:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HIRAGANA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPERIAL_ARAMAIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INHERITED:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSCRIPTIONAL_PAHLAVI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSCRIPTIONAL_PARTHIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAVANESE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KAITHI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KANNADA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KATAKANA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KAYAH_LI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHAROSHTHI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KHMER:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LAO:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATIN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LEPCHA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIMBU:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LINEAR_B:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LISU:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LYCIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LYDIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MALAYALAM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MANDAIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEETEI_MAYEK:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEROITIC_CURSIVE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEROITIC_HIEROGLYPHS:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIAO:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONGOLIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MYANMAR:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEW_TAI_LUE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NKO:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OGHAM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_ITALIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_PERSIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_SOUTH_ARABIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OLD_TURKIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OL_CHIKI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ORIYA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OSMANYA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHAGS_PA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PHOENICIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REJANG:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUNIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SAMARITAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SAURASHTRA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHARADA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHAVIAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SINHALA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SORA_SOMPENG:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDANESE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYLOTI_NAGRI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYRIAC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAGALOG:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAGBANWA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_LE:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_THAM:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAI_VIET:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAKRI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAMIL:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TELUGU:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAANA:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THAI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIBETAN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIFINAGH:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UGARITIC:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNKNOWN:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VAI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YI:Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "aliases:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scriptStarts:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scripts:[Ljava/lang/Character$UnicodeScript;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/String;)Ljava/lang/Character$UnicodeScript;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/lang/Character$UnicodeScript;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Character$UnicodeScript;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/Character$UnicodeScript;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Character;": {"fields": {"BYTES:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMBINING_SPACING_MARK:B": {"value": "0x8t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONNECTOR_PUNCTUATION:B": {"value": "0x17t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONTROL:B": {"value": "0xft", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CURRENCY_SYMBOL:B": {"value": "0x1at", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DASH_PUNCTUATION:B": {"value": "0x14t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECIMAL_DIGIT_NUMBER:B": {"value": "0x9t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DIRECTIONALITY_ARABIC_NUMBER:B": {"value": "0x6t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_BOUNDARY_NEUTRAL:B": {"value": "0x9t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_COMMON_NUMBER_SEPARATOR:B": {"value": "0x7t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_EUROPEAN_NUMBER:B": {"value": "0x3t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR:B": {"value": "0x4t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR:B": {"value": "0x5t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_LEFT_TO_RIGHT:B": {"value": "0x0t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING:B": {"value": "0xet", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE:B": {"value": "0xft", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_NONSPACING_MARK:B": {"value": "0x8t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_OTHER_NEUTRALS:B": {"value": "0xdt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_PARAGRAPH_SEPARATOR:B": {"value": "0xat", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_POP_DIRECTIONAL_FORMAT:B": {"value": "0x12t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_RIGHT_TO_LEFT:B": {"value": "0x1t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC:B": {"value": "0x2t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING:B": {"value": "0x10t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE:B": {"value": "0x11t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_SEGMENT_SEPARATOR:B": {"value": "0xbt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_UNDEFINED:B": {"value": "-0x1t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTIONALITY_WHITESPACE:B": {"value": "0xct", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCLOSING_MARK:B": {"value": "0x7t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "END_PUNCTUATION:B": {"value": "0x16t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERROR:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FINAL_QUOTE_PUNCTUATION:B": {"value": "0x1et", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FORMAT:B": {"value": "0x10t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INITIAL_QUOTE_PUNCTUATION:B": {"value": "0x1dt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LETTER_NUMBER:B": {"value": "0xat", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LINE_SEPARATOR:B": {"value": "0xdt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOWERCASE_LETTER:B": {"value": "0x2t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MATH_SYMBOL:B": {"value": "0x19t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_CODE_POINT:I": {"value": "0x10ffff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_HIGH_SURROGATE:C": {"value": "'\\udbff'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_LOW_SURROGATE:C": {"value": "'\\udfff'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_RADIX:I": {"value": "0x24", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_SURROGATE:C": {"value": "'\\udfff'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:C": {"value": "'\\uffff'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_CODE_POINT:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_HIGH_SURROGATE:C": {"value": "'\\ud800'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_LOW_SURROGATE:C": {"value": "'\\udc00'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_RADIX:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_SUPPLEMENTARY_CODE_POINT:I": {"value": "0x10000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_SURROGATE:C": {"value": "'\\ud800'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:C": {"value": "'\\u0000'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MODIFIER_LETTER:B": {"value": "0x4t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MODIFIER_SYMBOL:B": {"value": "0x1bt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NON_SPACING_MARK:B": {"value": "0x6t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHER_LETTER:B": {"value": "0x5t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHER_NUMBER:B": {"value": "0xbt", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHER_PUNCTUATION:B": {"value": "0x18t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHER_SYMBOL:B": {"value": "0x1ct", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PARAGRAPH_SEPARATOR:B": {"value": "0xet", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIVATE_USE:B": {"value": "0x12t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPACE_SEPARATOR:B": {"value": "0xct", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "START_PUNCTUATION:B": {"value": "0x15t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SURROGATE:B": {"value": "0x13t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TITLECASE_LETTER:B": {"value": "0x3t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNASSIGNED:B": {"value": "0x0t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UPPERCASE_LETTER:B": {"value": "0x1t", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x348b47d96b1a2678L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charCount(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt(Ljava/lang/CharSequence;I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt([CI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt([CII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAtImpl([CII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "codePointBefore(Ljava/lang/CharSequence;I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBefore([CI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBefore([CII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBeforeImpl([CII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "codePointCount(Ljava/lang/CharSequence;II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointCount([CII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointCountImpl([CII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(CC)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digit(CI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digit(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digitImpl(II)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forDigit(II)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDirectionality(C)B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDirectionality(I)B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDirectionalityImpl(I)B": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getName(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNameImpl(I)Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNumericValue(C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumericValue(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumericValueImpl(I)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getType(C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeImpl(I)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode(C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "highSurrogate(I)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAlphabetic(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAlphabeticImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isBmpCodePoint(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDefined(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDefined(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDefinedImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDigit(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDigit(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDigitImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isHighSurrogate(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isISOControl(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isISOControl(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIdentifierIgnorable(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIdentifierIgnorable(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIdentifierIgnorableImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isIdeographic(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIdeographicImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isJavaIdentifierPart(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isJavaIdentifierPart(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isJavaIdentifierStart(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isJavaIdentifierStart(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isJavaLetter(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isJavaLetterOrDigit(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLetter(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLetter(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLetterImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLetterOrDigit(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLetterOrDigit(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLetterOrDigitImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLowSurrogate(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLowerCase(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLowerCase(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLowerCaseImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMirrored(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMirrored(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMirroredImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSpace(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSpaceChar(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSpaceChar(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSpaceCharImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSupplementaryCodePoint(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSurrogate(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSurrogatePair(CC)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTitleCase(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTitleCase(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTitleCaseImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUnicodeIdentifierPart(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnicodeIdentifierPart(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnicodeIdentifierPartImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUnicodeIdentifierStart(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnicodeIdentifierStart(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnicodeIdentifierStartImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUpperCase(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUpperCase(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUpperCaseImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidCodePoint(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWhitespace(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWhitespace(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWhitespaceImpl(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowSurrogate(I)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints(Ljava/lang/CharSequence;II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints([CIIII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePointsImpl([CIIII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reverseBytes(C)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toChars(I[CI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toChars(I)[C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCodePoint(CC)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLowerCase(C)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLowerCase(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLowerCaseImpl(I)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString(C)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSurrogates(I[CI)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toTitleCase(C)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toTitleCase(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toTitleCaseImpl(I)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toUpperCase(C)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUpperCase(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUpperCaseImpl(I)I": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(C)Ljava/lang/Character;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charValue()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Character;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Class$Caches;": {"fields": {"genericInterfaces:Llibcore/util/BasicLruCache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetgenericInterfaces()Llibcore/util/BasicLruCache;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Class;": {"fields": {"ANNOTATION:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ENUM:I": {"value": "0x4000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FINALIZABLE:I": {"value": "-0x80000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SYNTHETIC:I": {"value": "0x1000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2c7e5503d9bf9553L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "accessFlags:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "classFlags:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classLoader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "classSize:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clinitThreadId:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "componentType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copiedMethodsOffset:S": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dexCache:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "dexClassDefIndex:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "dexTypeIndex:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extData:Ldalvik/system/ClassExt;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iFields:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ifTable:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "methods:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "numReferenceInstanceFields:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numReferenceStaticFields:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objectSize:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "objectSizeAllocFastPath:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primitiveType:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "referenceInstanceOffsets:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sFields:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "status:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "superClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "virtualMethodsOffset:S": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vtable:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "cannotCastMsg(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classForName(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classNameImpliesTopLevel()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findInterfaceMethod(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forName(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forName(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConstructor0([Ljava/lang/Class;I)Ljava/lang/reflect/Constructor;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredConstructorInternal([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredConstructorsInternal(Z)[Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredMethodInternal(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEnclosingConstructorNative()Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEnclosingMethodNative()Ljava/lang/reflect/Method;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInnerClassFlags(I)I": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInnerClassName()Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInterfacesInternal()[Ljava/lang/Class;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMethod(Ljava/lang/String;[Ljava/lang/Class;Z)Ljava/lang/reflect/Method;": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getNameNative()Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrimitiveClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPublicDeclaredFields()[Ljava/lang/reflect/Field;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPublicFieldRecursive(Ljava/lang/String;)Ljava/lang/reflect/Field;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPublicFieldsRecursive(Ljava/util/List;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPublicMethodRecursive(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPublicMethodsInternal(Ljava/util/List;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAnnotation()[Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAttribute()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDeclaredAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLocalOrAnonymousClass()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asSubclass(Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cast(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "desiredAssertionStatus()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAccessFlags()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCanonicalName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClasses()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComponentType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConstructor([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConstructors()[Ljava/lang/reflect/Constructor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredClasses()[Ljava/lang/Class;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredConstructor([Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredConstructors()[Ljava/lang/reflect/Constructor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredField(Ljava/lang/String;)Ljava/lang/reflect/Field;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredFields()[Ljava/lang/reflect/Field;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredFieldsUnchecked(Z)[Ljava/lang/reflect/Field;": {"other": [".method", "public", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredMethod(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredMethods()[Ljava/lang/reflect/Method;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredMethodsUnchecked(Z)[Ljava/lang/reflect/Method;": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnclosingClass()Ljava/lang/Class;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnclosingConstructor()Ljava/lang/reflect/Constructor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnclosingMethod()Ljava/lang/reflect/Method;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnumConstants()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnumConstantsShared()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getField(Ljava/lang/String;)Ljava/lang/reflect/Field;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFields()[Ljava/lang/reflect/Field;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericInterfaces()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericSuperclass()Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstanceMethod(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInterfaces()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethod(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethods()[Ljava/lang/reflect/Method;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackage()Ljava/lang/Package;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackageName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionDomain()Ljava/security/ProtectionDomain;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigners()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSimpleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSuperclass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeParameters()[Ljava/lang/reflect/TypeVariable;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotation()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnonymousClass()Z": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isArray()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAssignableFrom(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEnum()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFinalizable()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isInstance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInterface()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLocalClass()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMemberClass()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPrimitive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isProxy()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance()Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toGenericString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ClassCastException;": {"fields": {"serialVersionUID:J": {"value": "-0x7ffffa3131981aa4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ClassCircularityError;": {"fields": {"serialVersionUID:J": {"value": "0xea1d92582e610a9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ClassFormatError;": {"fields": {"serialVersionUID:J": {"value": "-0x74da41deeb7d0a8bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ClassLoader$SystemClassLoader;": {"fields": {"loader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/ClassLoader;": {"fields": {"allocator:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classTable:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "packages:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "proxyCache:Ljava/util/Map;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smcreateSystemClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ClassLoader;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;Ljava/lang/ClassLoader;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkCreateClassLoader()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createSystemClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findBootstrapClassOrNull(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBootstrapResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBootstrapResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassLoader(Ljava/lang/Class;)Ljava/lang/ClassLoader;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSystemClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSystemResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSystemResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSystemResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerAsParallelCapable()Z": {"other": [".method", "protected", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearAssertionStatus()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defineClass(Ljava/lang/String;Ljava/nio/ByteBuffer;Ljava/security/ProtectionDomain;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defineClass(Ljava/lang/String;[BII)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defineClass(Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defineClass([BII)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "definePackage(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/net/URL;)Ljava/lang/Package;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findLibrary(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findLoadedClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findSystemClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackage(Ljava/lang/String;)Ljava/lang/Package;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackages()[Ljava/lang/Package;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/lang/ClassLoader;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadClass(Ljava/lang/String;Z)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveClass(Ljava/lang/Class;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClassAssertionStatus(Ljava/lang/String;Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultAssertionStatus(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPackageAssertionStatus(Ljava/lang/String;Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSigners(Ljava/lang/Class;[Ljava/lang/Object;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ClassNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "0x7f5acd663ed4208eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ex:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getException()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/CloneNotSupportedException;": {"fields": {"serialVersionUID:J": {"value": "0x481a29f4778b29fbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Cloneable;": {"fields": {}, "methods": {}}, "Ljava/lang/Comparable;": {"fields": {}, "methods": {"compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Compiler;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "command(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compileClass(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compileClasses(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disable()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enable()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Deprecated;": {"fields": {}, "methods": {"forRemoval()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "since()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Double;": {"fields": {"BYTES:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_EXPONENT:I": {"value": "0x3ff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:D": {"value": "1.7976931348623157E308", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_EXPONENT:I": {"value": "-0x3fe", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_NORMAL:D": {"value": "2.2250738585072014E-308", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:D": {"value": "4.9E-324", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEGATIVE_INFINITY:D": {"value": "-Infinity", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NaN:D": {"value": "NaN", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "POSITIVE_INFINITY:D": {"value": "Infinity", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x7f4c3db5d69404fcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(DD)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleToLongBits(D)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleToRawLongBits(D)J": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFinite(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInfinite(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNaN(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longBitsToDouble(J)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseDouble(Ljava/lang/String;)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString(D)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(D)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(D)Ljava/lang/Double;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Double;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Double;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInfinite()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNaN()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Enum$1;": {"fields": {}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Enum;": {"fields": {"sharedConstantsCache:Llibcore/util/BasicLruCache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "ordinal:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smenumValues(Ljava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumValues(Ljava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSharedConstants(Ljava/lang/Class;)[Ljava/lang/Enum;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readObjectNoData()V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Enum;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Enum;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ordinal()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/EnumConstantNotPresentException;": {"fields": {"serialVersionUID:J": {"value": "-0x53eb411e0ac4dd94L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "constantName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enumType:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "constantName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Error;": {"fields": {"serialVersionUID:J": {"value": "0x451d36568b820e56L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Exception;": {"fields": {"serialVersionUID:J": {"value": "-0x2f02e0c1e5c4e33cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ExceptionInInitializerError;": {"fields": {"serialVersionUID:J": {"value": "0x151e34d009a19380L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "exception:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getException()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Float;": {"fields": {"BYTES:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_EXPONENT:I": {"value": "0x7f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:F": {"value": "3.4028235E38f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_EXPONENT:I": {"value": "-0x7e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_NORMAL:F": {"value": "1.1754944E-38f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:F": {"value": "1.4E-45f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEGATIVE_INFINITY:F": {"value": "-Infinityf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NaN:F": {"value": "NaNf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "POSITIVE_INFINITY:F": {"value": "Infinityf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x2512365d24c30f14L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(F)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(FF)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatToIntBits(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatToRawIntBits(F)I": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intBitsToFloat(I)F": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFinite(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInfinite(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNaN(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseFloat(Ljava/lang/String;)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString(F)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(F)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(F)Ljava/lang/Float;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Float;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Float;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInfinite()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNaN()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/FunctionalInterface;": {"fields": {}, "methods": {}}, "Ljava/lang/IllegalAccessError;": {"fields": {"serialVersionUID:J": {"value": "-0x7cbf00a185fbfc63L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IllegalAccessException;": {"fields": {"serialVersionUID:J": {"value": "0x5bd42871f9297b32L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IllegalArgumentException;": {"fields": {"serialVersionUID:J": {"value": "-0x4a768c2c82997044L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IllegalCallerException;": {"fields": {"serialVersionUID:J": {"value": "-0x209ad2c9778cac18L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/IllegalMonitorStateException;": {"fields": {"serialVersionUID:J": {"value": "0x33885078182ced4dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IllegalStateException;": {"fields": {"serialVersionUID:J": {"value": "-0x19a8aa1965b90db8L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IllegalThreadStateException;": {"fields": {"serialVersionUID:J": {"value": "-0x69d5dea93850c6ceL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IncompatibleClassChangeError;": {"fields": {"serialVersionUID:J": {"value": "-0x4435802e0e6037c7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/IndexOutOfBoundsException;": {"fields": {"serialVersionUID:J": {"value": "0x33fc59fdab42b27L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/InheritableThreadLocal;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createMap(Ljava/lang/Thread;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMap(Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/InstantiationError;": {"fields": {"serialVersionUID:J": {"value": "-0x43cde2e81f214894L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/InstantiationException;": {"fields": {"serialVersionUID:J": {"value": "-0x7527c1d8b22a7a76L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Integer$$ExternalSyntheticBackport0;": {"fields": {}, "methods": {"m(Ljava/lang/CharSequence;III)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Integer$$ExternalSyntheticBackport1;": {"fields": {}, "methods": {"m(Ljava/lang/CharSequence;III)J": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Integer$IntegerCache;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "archivedCache:[Ljava/lang/Integer;": {"value": "null", "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cache:[Ljava/lang/Integer;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "high:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "low:I": {"value": "-0x80", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Integer;": {"fields": {"BYTES:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DigitOnes:[B": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DigitTens:[B": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_VALUE:I": {"value": "0x7fffffff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:I": {"value": "-0x80000000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SMALL_NEG_VALUES:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SMALL_NONNEG_VALUES:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digits:[C": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x12e2a0a4f7818738L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sizeTable:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bitCount(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideUnsigned(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatUnsignedInt(II[BII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatUnsignedInt(II[CII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChars(II[B)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChars(II[C)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInteger(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInteger(Ljava/lang/String;I)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInteger(Ljava/lang/String;Ljava/lang/Integer;)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "highestOneBit(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowestOneBit(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "numberOfLeadingZeros(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "numberOfTrailingZeros(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseInt(Ljava/lang/CharSequence;III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseInt(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseInt(Ljava/lang/String;I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedInt(Ljava/lang/CharSequence;III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedInt(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedInt(Ljava/lang/String;I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainderUnsigned(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverse(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseBytes(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotateLeft(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotateRight(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stringSize(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sum(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toBinaryString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toOctalString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(II)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedLong(I)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedString(II)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedString0(II)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(I)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;I)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Integer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/InternalError;": {"fields": {"serialVersionUID:J": {"value": "-0x7dc4ccb23ff53dfdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/InterruptedException;": {"fields": {"serialVersionUID:J": {"value": "0x5cfda8c301deb7f9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Iterable;": {"fields": {}, "methods": {"forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/LinkageError;": {"fields": {"serialVersionUID:J": {"value": "0x31ad4b5534a84abaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Long$LongCache;": {"fields": {"cache:[Ljava/lang/Long;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Long;": {"fields": {"BYTES:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:J": {"value": "0x7fffffffffffffffL", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:J": {"value": "-0x8000000000000000L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x3b8be490cc8f23dfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bitCount(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(JJ)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned(JJ)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideUnsigned(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatUnsignedLong0(JI[BII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChars(JI[B)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChars(JI[C)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/lang/String;)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;J)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;Ljava/lang/Long;)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "highestOneBit(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowestOneBit(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "numberOfLeadingZeros(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "numberOfTrailingZeros(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseLong(Ljava/lang/CharSequence;III)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseLong(Ljava/lang/String;)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseLong(Ljava/lang/String;I)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedLong(Ljava/lang/CharSequence;III)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedLong(Ljava/lang/String;)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnsignedLong(Ljava/lang/String;I)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainderUnsigned(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverse(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseBytes(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotateLeft(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotateRight(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stringSize(J)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sum(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toBinaryString(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toOctalString(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(JI)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedBigInteger(J)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toUnsignedString(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedString(JI)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedString0(JI)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(J)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;I)Ljava/lang/Long;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Long;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Math$RandomNumberGeneratorHolder;": {"fields": {"randomNumberGenerator:Ljava/util/Random;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Math;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEGREES_TO_RADIANS:D": {"value": "0.017453292519943295", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "E:D": {"value": "2.718281828459045", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PI:D": {"value": "3.141592653589793", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RADIANS_TO_DEGREES:D": {"value": "57.29577951308232", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "negativeZeroDoubleBits:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "negativeZeroFloatBits:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "twoToTheDoubleScaleDown:D": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "twoToTheDoubleScaleUp:D": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IEEEremainder(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acos(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asin(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atan(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atan2(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cbrt(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceil(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copySign(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copySign(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cos(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cosh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementExact(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementExact(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exp(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "expm1(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(JI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fma(DDD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fma(FFF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponent(D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponent(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hypot(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementExact(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementExact(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log10(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log1p(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyFull(II)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyHigh(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negateExact(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negateExact(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextAfter(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextAfter(FD)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDown(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDown(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextUp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextUp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pow(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "powerOfTwoD(I)D": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "powerOfTwoF(I)F": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "random()D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "randomIntInternal()I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "randomLongInternal()J": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rint(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "round(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "round(D)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scalb(DI)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scalb(FI)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRandomSeedInternal(J)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signum(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sin(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sinh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqrt(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tan(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tanh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toDegrees(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toIntExact(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toRadians(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ulp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ulp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NegativeArraySizeException;": {"fields": {"serialVersionUID:J": {"value": "-0x7c58bbe6cc3c8375L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NoClassDefFoundError;": {"fields": {"serialVersionUID:J": {"value": "0x7e3afc5a8df49c6aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/NoSuchFieldError;": {"fields": {"serialVersionUID:J": {"value": "-0x2ff7b4f340b9ff8bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NoSuchFieldException;": {"fields": {"serialVersionUID:J": {"value": "-0x5542dc108a04d6d4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NoSuchMethodError;": {"fields": {"serialVersionUID:J": {"value": "-0x3441d1cd1ebfc867L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NoSuchMethodException;": {"fields": {"serialVersionUID:J": {"value": "0x45ddbd9e5ec605dbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NullPointerException;": {"fields": {"serialVersionUID:J": {"value": "0x47a5a18eff31e1b8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Number;": {"fields": {"serialVersionUID:J": {"value": "-0x79536ae2f46b1f75L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/NumberFormatException;": {"fields": {"serialVersionUID:J": {"value": "-0x278976c0047315eeL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forCharSequence(Ljava/lang/CharSequence;III)Ljava/lang/NumberFormatException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forInputString(Ljava/lang/String;)Ljava/lang/NumberFormatException;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Object;": {"fields": {"shadow$_klass_:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shadow$_monitor_:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identityHashCode(Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "identityHashCodeNative(Ljava/lang/Object;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalClone()Ljava/lang/Object;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClass()Ljava/lang/Class;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notify()V": {"other": [".method", "public", "final", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notifyAll()V": {"other": [".method", "public", "final", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wait()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wait(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wait(JI)V": {"other": [".method", "public", "final", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/OutOfMemoryError;": {"fields": {"serialVersionUID:J": {"value": "0x7231bb708888e315L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Override;": {"fields": {}, "methods": {}}, "Ljava/lang/Package$1;": {"fields": {"val$fn:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$iname:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Package;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Package$1PackageInfoProxy;": {"fields": {"this$0:Ljava/lang/Package;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Package;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Package-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/Package;": {"fields": {"mans:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pkgs:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "urls:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implTitle:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implVendor:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implVersion:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "packageInfo:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pkgName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sealBase:Ljava/net/URL;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specTitle:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specVendor:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specVersion:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetmans()Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetpkgs()Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgeturls()Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadManifest(Ljava/lang/String;)Ljava/util/jar/Manifest;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/net/URL;Ljava/lang/ClassLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;Ljava/lang/ClassLoader;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;Ljava/lang/ClassLoader;Ljava/lang/Package-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defineSystemPackage(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Package;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPackage(Ljava/lang/Class;)Ljava/lang/Package;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPackage(Ljava/lang/String;)Ljava/lang/Package;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPackageInfo()Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPackages()[Ljava/lang/Package;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSystemPackage(Ljava/lang/String;)Ljava/lang/Package;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemPackage0(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemPackages()[Ljava/lang/Package;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemPackages0()[Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadManifest(Ljava/lang/String;)Ljava/util/jar/Manifest;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getImplementationTitle()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getImplementationVendor()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getImplementationVersion()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSpecificationTitle()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSpecificationVendor()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSpecificationVersion()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCompatibleWith(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSealed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSealed(Ljava/net/URL;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Process;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "destroy()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "destroyForcibly()Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exitValue()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAlive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "waitFor()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "waitFor(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$NullInputStream;": {"fields": {"INSTANCE:Ljava/lang/ProcessBuilder$NullInputStream;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$NullOutputStream;": {"fields": {"INSTANCE:Ljava/lang/ProcessBuilder$NullOutputStream;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$3;": {"fields": {"val$file:Ljava/io/File;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$4;": {"fields": {"val$file:Ljava/io/File;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$5;": {"fields": {"val$file:Ljava/io/File;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/File;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect$Type;": {"fields": {"$VALUES:[Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "APPEND:Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INHERIT:Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PIPE:Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ:Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE:Ljava/lang/ProcessBuilder$Redirect$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder$Redirect-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/ProcessBuilder$Redirect;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHERIT:Ljava/lang/ProcessBuilder$Redirect;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PIPE:Ljava/lang/ProcessBuilder$Redirect;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/ProcessBuilder$Redirect-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendTo(Ljava/io/File;)Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "from(Ljava/io/File;)Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "to(Ljava/io/File;)Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "file()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/ProcessBuilder$Redirect$Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "command:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "directory:Ljava/io/File;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "environment:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "redirectErrorStream:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "redirects:[Ljava/lang/ProcessBuilder$Redirect;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/lang/String;)V": {"other": [".method", "public", "varargs", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirects()[Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "command(Ljava/util/List;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "command([Ljava/lang/String;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "command()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "directory()Ljava/io/File;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "directory(Ljava/io/File;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "environment([Ljava/lang/String;)Ljava/lang/ProcessBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "environment()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inheritIO()Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectError()Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectError(Ljava/io/File;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectError(Ljava/lang/ProcessBuilder$Redirect;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectErrorStream(Z)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectErrorStream()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectInput()Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectInput(Ljava/io/File;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectInput(Ljava/lang/ProcessBuilder$Redirect;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectOutput()Ljava/lang/ProcessBuilder$Redirect;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectOutput(Ljava/io/File;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "redirectOutput(Ljava/lang/ProcessBuilder$Redirect;)Ljava/lang/ProcessBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start()Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$ExternalData;": {"fields": {"bytes:[B": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "str:Ljava/lang/String;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringEntry;": {"fields": {"e:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgete(Ljava/lang/ProcessEnvironment$StringEntry;)Ljava/util/Map$Entry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Map$Entry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringEntrySet$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/lang/ProcessEnvironment$StringEntrySet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ProcessEnvironment$StringEntrySet;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringEntrySet$2;": {"fields": {"val$o:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/ProcessEnvironment$Variable;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/ProcessEnvironment$Value;)Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/ProcessEnvironment$StringEntrySet;": {"fields": {"s:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgets(Ljava/lang/ProcessEnvironment$StringEntrySet;)Ljava/util/Set;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "vvEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringEnvironment;": {"fields": {"m:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString(Ljava/lang/ProcessEnvironment$Value;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEnvironmentBlock([I)[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringKeySet$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/lang/ProcessEnvironment$StringKeySet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ProcessEnvironment$StringKeySet;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringKeySet;": {"fields": {"s:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgets(Ljava/lang/ProcessEnvironment$StringKeySet;)Ljava/util/Set;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringValues$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/lang/ProcessEnvironment$StringValues;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ProcessEnvironment$StringValues;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$StringValues;": {"fields": {"c:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetc(Ljava/lang/ProcessEnvironment$StringValues;)Ljava/util/Collection;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$Value;": {"fields": {}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf([B)Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfQueryOnly(Ljava/lang/Object;)Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfQueryOnly(Ljava/lang/String;)Ljava/lang/ProcessEnvironment$Value;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/ProcessEnvironment$Value;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment$Variable;": {"fields": {}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/ProcessEnvironment$Variable;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf([B)Ljava/lang/ProcessEnvironment$Variable;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfQueryOnly(Ljava/lang/Object;)Ljava/lang/ProcessEnvironment$Variable;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfQueryOnly(Ljava/lang/String;)Ljava/lang/ProcessEnvironment$Variable;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/ProcessEnvironment$Variable;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ProcessEnvironment;": {"fields": {"MIN_NAME_LENGTH:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smarrayCompare([B[B)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smarrayEquals([B[B)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smarrayHash([B)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smvalidateValue(Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smvalidateVariable(Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayCompare([B[B)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayEquals([B[B)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayHash([B)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildEnvironment()Ljava/util/Map;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyEnvironment(I)Ljava/util/Map;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "environ()[[B": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "environment()Ljava/util/Map;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getenv()Ljava/util/Map;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toEnvironmentBlock(Ljava/util/Map;[I)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validateValue(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validateVariable(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/ProcessImpl;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "start([Ljava/lang/String;Ljava/util/Map;Ljava/lang/String;[Ljava/lang/ProcessBuilder$Redirect;Z)Ljava/lang/Process;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toCString(Ljava/lang/String;)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/Readable;": {"fields": {}, "methods": {"read(Ljava/nio/CharBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ReflectiveOperationException;": {"fields": {"serialVersionUID:J": {"value": "0x75bcd15L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Runnable;": {"fields": {}, "methods": {"run()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/RuntimeException;": {"fields": {"serialVersionUID:J": {"value": "-0x61a0f9b8f5cb7c1bL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Runtime;": {"fields": {"currentRuntime:Ljava/lang/Runtime;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finalizeOnExit:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mLibPaths:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "shutdownHooks:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shuttingDown:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "checkTargetSdkVersionForLoad(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLibPaths()[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRuntime()Ljava/lang/Runtime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initLibPaths()[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadLibrary0(Ljava/lang/ClassLoader;Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nativeExit(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativeGc()V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nativeLoad(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "nativeLoad(Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runFinalization0()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runFinalizersOnExit(Z)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addShutdownHook(Ljava/lang/Thread;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "availableProcessors()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec(Ljava/lang/String;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec(Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec(Ljava/lang/String;[Ljava/lang/String;Ljava/io/File;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec([Ljava/lang/String;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec([Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec([Ljava/lang/String;[Ljava/lang/String;Ljava/io/File;)Ljava/lang/Process;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exit(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "freeMemory()J": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "gc()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalizedInputStream(Ljava/io/InputStream;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalizedOutputStream(Ljava/io/OutputStream;)Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "halt(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/lang/String;Ljava/lang/ClassLoader;)V": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "load0(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadLibrary(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadLibrary(Ljava/lang/String;Ljava/lang/ClassLoader;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "loadLibrary0(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadLibrary0(Ljava/lang/ClassLoader;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "maxMemory()J": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeShutdownHook(Ljava/lang/Thread;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runFinalization()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "totalMemory()J": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "traceInstructions(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "traceMethodCalls(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/RuntimePermission;": {"fields": {"serialVersionUID:J": {"value": "0x66af2f85d3b9d84fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/SafeVarargs;": {"fields": {}, "methods": {}}, "Ljava/lang/SecurityException;": {"fields": {"serialVersionUID:J": {"value": "0x5f74dc826f65d637L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/SecurityManager;": {"fields": {"inCheck:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccept(Ljava/lang/String;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccess(Ljava/lang/Thread;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccess(Ljava/lang/ThreadGroup;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAwtEventQueueAccess()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkConnect(Ljava/lang/String;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkConnect(Ljava/lang/String;ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkCreateClassLoader()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkDelete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkExec(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkExit(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkLink(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkListen(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkMemberAccess(Ljava/lang/Class;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkMulticast(Ljava/net/InetAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkMulticast(Ljava/net/InetAddress;B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPackageAccess(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPackageDefinition(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission(Ljava/security/Permission;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPrintJobAccess()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPropertiesAccess()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPropertyAccess(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkRead(Ljava/io/FileDescriptor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkRead(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkRead(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkSecurityAccess(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkSetFactory()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkSystemClipboardAccess()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkTopLevelWindow(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkWrite(Ljava/io/FileDescriptor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkWrite(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "classDepth(Ljava/lang/String;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "classLoaderDepth()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "currentClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "currentLoadedClass()Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassContext()[Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInCheck()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecurityContext()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThreadGroup()Ljava/lang/ThreadGroup;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inClass(Ljava/lang/String;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inClassLoader()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Short$ShortCache;": {"fields": {"cache:[Ljava/lang/Short;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Short;": {"fields": {"BYTES:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE:S": {"value": "0x7fffs", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:S": {"value": "-0x8000s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZE:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x684d37133460da52L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:S": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(S)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(SS)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned(SS)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)Ljava/lang/Short;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseShort(Ljava/lang/String;)S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseShort(Ljava/lang/String;I)S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseBytes(S)S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(S)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedInt(S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnsignedLong(S)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/Short;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;I)Ljava/lang/Short;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(S)Ljava/lang/Short;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValue()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Short;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValue()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StackOverflowError;": {"fields": {"serialVersionUID:J": {"value": "0x7779ef15877b2377L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StackTraceElement;": {"fields": {"serialVersionUID:J": {"value": "0x6109c59a2636dd85L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "declaringClass:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "fileName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "lineNumber:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "methodName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLineNumber()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethodName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNativeMethod()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StrictMath$RandomNumberGeneratorHolder;": {"fields": {"randomNumberGenerator:Ljava/util/Random;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/StrictMath;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEGREES_TO_RADIANS:D": {"value": "0.017453292519943295", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "E:D": {"value": "2.718281828459045", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PI:D": {"value": "3.141592653589793", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RADIANS_TO_DEGREES:D": {"value": "57.29577951308232", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IEEEremainder(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(J)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acos(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asin(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atan(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atan2(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cbrt(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceil(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copySign(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copySign(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cos(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cosh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exp(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "expm1(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorDiv(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(JI)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorMod(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorOrCeil(DDDD)D": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fma(DDD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fma(FFF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponent(D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponent(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hypot(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log10(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log1p(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyFull(II)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiplyHigh(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextAfter(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextAfter(FD)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDown(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDown(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextUp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextUp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pow(DD)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "random()D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rint(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "round(F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "round(D)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scalb(DI)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scalb(FI)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sin(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sinh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqrt(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractExact(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractExact(JJ)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tan(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tanh(D)D": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toDegrees(D)D": {"other": [".method", "public", "static", "strictfp"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toIntExact(J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toRadians(D)D": {"other": [".method", "public", "static", "strictfp"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ulp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ulp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/String$CaseInsensitiveComparator-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/String$CaseInsensitiveComparator;": {"fields": {"serialVersionUID:J": {"value": "0x77035c7d5c50e5ceL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String$CaseInsensitiveComparator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/String;": {"fields": {"CASE_INSENSITIVE_ORDER:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x5f0f5bc785c44cbeL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(II[C)V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/StringBuffer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/StringBuilder;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BIILjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BIILjava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BLjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BLjava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkBoundsBeginEnd(III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBoundsOffCount(III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIndex(II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyValueOf([C)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyValueOf([CII)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doRepeat(I)Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doReplace(CC)Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fastSubstring(II)Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;Ljava/lang/String;I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf([CIILjava/lang/String;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOf([CII[CIII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "indexOfNonWhitespace()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOfSupplementary(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "join(Ljava/lang/CharSequence;Ljava/lang/Iterable;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/lang/CharSequence;[Ljava/lang/CharSequence;)Ljava/lang/String;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;Ljava/lang/String;I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastIndexOf([CIILjava/lang/String;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastIndexOf([CII[CIII)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "lastIndexOfSupplementary(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nonSyncContentEquals(Ljava/lang/AbstractStringBuilder;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(C)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(D)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(F)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Z)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf([C)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf([CII)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charAt(I)C": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chars()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBefore(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointCount(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePoints()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/String;)I": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareToIgnoreCase(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "concat(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/CharSequence;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contentEquals(Ljava/lang/CharSequence;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contentEquals(Ljava/lang/StringBuffer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "endsWith(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equalsIgnoreCase(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(II[BI)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(Ljava/nio/charset/Charset;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChars(II[CI)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChars([CI)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCharsNoCheck(II[CI)V": {"other": [".method", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intern()Ljava/lang/String;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBlank()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lines()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matches(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "regionMatches(ILjava/lang/String;II)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "regionMatches(ZILjava/lang/String;II)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "repeat(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(CC)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceFirst(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "split(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "split(Ljava/lang/String;I)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWith(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWith(Ljava/lang/String;I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "strip()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stripLeading()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stripTrailing()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(II)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCharArray()[C": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLowerCase()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLowerCase(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUpperCase()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUpperCase(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trim()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringBuffer;": {"fields": {"serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2f0707d9eac8ead3L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toStringCache:[C": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/CharSequence;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "append(C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(D)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(F)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(J)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/AbstractStringBuilder;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/StringBuffer;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Z)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append([C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append([CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(D)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(F)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(I)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(J)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/AbstractStringBuilder;)Ljava/lang/StringBuffer;": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/Object;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/String;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Z)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append([C)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append([CII)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendCodePoint(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendCodePoint(I)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "capacity()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charAt(I)C": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt(I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBefore(I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointCount(II)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(II)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteCharAt(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteCharAt(I)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacity(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChars(II[CI)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IC)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ID)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IF)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IJ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IZ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(I[C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(I[CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IC)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ID)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IF)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(II)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IJ)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/CharSequence;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/CharSequence;II)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/Object;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/String;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IZ)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(I[C)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(I[CII)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints(II)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(IILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(IILjava/lang/String;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverse()Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverse()Ljava/lang/StringBuffer;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharAt(IC)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLength(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(I)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(II)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trimToSize()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringBuilder;": {"fields": {"serialVersionUID:J": {"value": "0x3cd5fb145a4c6acbL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/CharSequence;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "append(C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(D)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(F)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(J)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Ljava/lang/StringBuffer;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(Z)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append([C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append([CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(D)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(F)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(I)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(J)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/Object;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/String;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Z)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append([C)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append([CII)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendCodePoint(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendCodePoint(I)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "capacity()I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charAt(I)C": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointAt(I)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointBefore(I)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "codePointCount(II)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(II)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteCharAt(I)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteCharAt(I)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacity(I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChars(II[CI)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IC)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ID)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IF)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IJ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/CharSequence;II)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/Object;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(ILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IZ)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(I[C)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(I[CII)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert(IC)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ID)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IF)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(II)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IJ)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/CharSequence;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/CharSequence;II)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/Object;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(ILjava/lang/String;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(IZ)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(I[C)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insert(I[CII)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offsetByCodePoints(II)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(IILjava/lang/String;)Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(IILjava/lang/String;)Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverse()Ljava/lang/AbstractStringBuilder;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverse()Ljava/lang/StringBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharAt(IC)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLength(I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(I)Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "substring(II)Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trimToSize()V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringIndexOutOfBoundsException;": {"fields": {"serialVersionUID:J": {"value": "-0x5ddaaf32909cbb0aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/StringUTF16$CharsSpliterator;": {"fields": {"array:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cs:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringUTF16$CodePointsSpliterator;": {"fields": {"array:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cs:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "advance(Ljava/lang/String;IILjava/util/function/IntConsumer;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringUTF16$LinesSpliterator;": {"fields": {"fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOfLineSeparator(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipLineSeparator(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/StringUTF16;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "charAt(Ljava/lang/String;I)C": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIndex(ILjava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(Ljava/lang/String;I)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOfNonWhitespace(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastIndexOfNonWhitespace(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lines(Ljava/lang/String;)Ljava/util/stream/Stream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newString(Ljava/lang/String;II)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "strip(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripLeading(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripTrailing(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/SuppressWarnings;": {"fields": {}, "methods": {"value()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/System$PropertiesWithNonOverrideableDefaults;": {"fields": {}, "methods": {"(Ljava/util/Properties;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/System;": {"fields": {"ARRAYCOPY_SHORT_BOOLEAN_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_BYTE_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_CHAR_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_DOUBLE_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_FLOAT_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_INT_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_LONG_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ARRAYCOPY_SHORT_SHORT_ARRAY_THRESHOLD:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOCK:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cons:Ljava/io/Console;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "err:Ljava/io/PrintStream;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "in:Ljava/io/InputStream;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "justRanFinalization:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lineSeparator:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/PrintStream;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "props:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runGC:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unchangeableProps:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "addLegacyLocaleSystemProperties()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopy(Ljava/lang/Object;ILjava/lang/Object;II)V": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arraycopy([BI[BII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([CI[CII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([DI[DII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopy([FI[FII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([II[III)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([JI[JII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([SI[SII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopy([ZI[ZII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arraycopyBooleanUnchecked([ZI[ZII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyByteUnchecked([BI[BII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyCharUnchecked([CI[CII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyDoubleUnchecked([DI[DII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyFloatUnchecked([FI[FII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyIntUnchecked([II[III)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyLongUnchecked([JI[JII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraycopyShortUnchecked([SI[SII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkKey(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "console()Ljava/io/Console;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "currentTimeMillis()J": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exit(I)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "gc()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperties()Ljava/util/Properties;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecurityManager()Ljava/lang/SecurityManager;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getenv(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getenv()Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identityHashCode(Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inheritedChannel()Ljava/nio/channels/Channel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initProperties()Ljava/util/Properties;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initUnchangeableSystemProperties()Ljava/util/Properties;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lineSeparator()Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadLibrary(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(CLjava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "logE(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "logE(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "logI(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logI(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logW(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logW(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "mapLibraryName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nanoTime()J": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newPrintStream(Ljava/io/FileOutputStream;Ljava/lang/String;)Ljava/io/PrintStream;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsePropertyAssignments(Ljava/util/Properties;[Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runFinalization()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runFinalizersOnExit(Z)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultChangeableProperties(Ljava/util/Properties;)Ljava/util/Properties;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setErr(Ljava/io/PrintStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setErr0(Ljava/io/PrintStream;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setIn(Ljava/io/InputStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIn0(Ljava/io/InputStream;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setOut(Ljava/io/PrintStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOut0(Ljava/io/PrintStream;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setProperties(Ljava/util/Properties;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSecurityManager(Ljava/lang/SecurityManager;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUnchangeableSystemProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specialProperties()[Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Thread$1;": {"fields": {"val$subcl:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Thread$Caches;": {"fields": {"subclassAudits:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subclassAuditsQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Thread$State;": {"fields": {"$VALUES:[Ljava/lang/Thread$State;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BLOCKED:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEW:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUNNABLE:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TERMINATED:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIMED_WAITING:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WAITING:Ljava/lang/Thread$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/Thread$State;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/Thread$State;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Thread$UncaughtExceptionHandler;": {"fields": {}, "methods": {"uncaughtException(Ljava/lang/Thread;Ljava/lang/Throwable;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Thread$WeakClassKey;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Thread;": {"fields": {"EMPTY_STACK_TRACE:[Ljava/lang/StackTraceElement;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_PRIORITY:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_PRIORITY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NORM_PRIORITY:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUBCLASS_IMPLEMENTATION_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultUncaughtExceptionHandler:Ljava/lang/Thread$UncaughtExceptionHandler;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadInitNumber:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadSeqNumber:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "uncaughtExceptionPreHandler:Ljava/lang/Thread$UncaughtExceptionHandler;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "blocker:Lsun/nio/ch/Interruptible;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "blockerLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contextClassLoader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "daemon:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "eetop:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "group:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "inheritableThreadLocals:Ljava/lang/ThreadLocal$ThreadLocalMap;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "inheritedAccessControlContext:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "nativePeer:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parkBlocker:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "priority:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "single_step:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stackSize:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "started:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stillborn:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemDaemon:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "target:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "threadLocalRandomProbe:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadLocalRandomSecondarySeed:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadLocalRandomSeed:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadLocals:Ljava/lang/ThreadLocal$ThreadLocalMap;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "tid:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uncaughtExceptionHandler:Ljava/lang/Thread$UncaughtExceptionHandler;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unparkedBeforeStart:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Runnable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Runnable;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Runnable;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;JLjava/security/AccessControlContext;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;JZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/String;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "activeCount()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "auditSubclass(Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentThread()Ljava/lang/Thread;": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dumpStack()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate([Ljava/lang/Thread;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exit()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAllStackTraces()Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultUncaughtExceptionHandler()Ljava/lang/Thread$UncaughtExceptionHandler;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUncaughtExceptionPreHandler()Ljava/lang/Thread$UncaughtExceptionHandler;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "holdsLock(Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init2(Ljava/lang/Thread;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt0()V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupted()Z": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCCLOverridden(Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativeCreate(Ljava/lang/Thread;JZ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativeGetStatus(Z)I": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextThreadID()J": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextThreadNum()I": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "onSpinWait()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "processQueue(Ljava/lang/ref/ReferenceQueue;Ljava/util/concurrent/ConcurrentMap;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDefaultUncaughtExceptionHandler(Ljava/lang/Thread$UncaughtExceptionHandler;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNativeName(Ljava/lang/String;)V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPriority0(I)V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setUncaughtExceptionPreHandler(Ljava/lang/Thread$UncaughtExceptionHandler;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "sleep(J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sleep(JI)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sleep(Ljava/lang/Object;JI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "yield()V": {"other": [".method", "public", "static", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "blockedOn(Lsun/nio/ch/Interruptible;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkAccess()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countStackFrames()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "destroy()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dispatchUncaughtException(Ljava/lang/Throwable;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getContextClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPriority()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStackTrace()[Ljava/lang/StackTraceElement;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getState()Ljava/lang/Thread$State;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThreadGroup()Ljava/lang/ThreadGroup;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUncaughtExceptionHandler()Ljava/lang/Thread$UncaughtExceptionHandler;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interrupt()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAlive()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDaemon()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInterrupted()Z": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(JI)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resume()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setContextClassLoader(Ljava/lang/ClassLoader;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDaemon(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setName(Ljava/lang/String;)V": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPriority(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSystemDaemon(Z)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setUncaughtExceptionHandler(Ljava/lang/Thread$UncaughtExceptionHandler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stop()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stop(Ljava/lang/Throwable;)V": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "suspend()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ThreadDeath;": {"fields": {"serialVersionUID:J": {"value": "-0x3d4ccb06e607350cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ThreadGroup;": {"fields": {"mainThreadGroup:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "systemThreadGroup:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "daemon:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "destroyed:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "groups:[Ljava/lang/ThreadGroup;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "maxPriority:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nUnstartedThreads:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "ngroups:I": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "nthreads:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "threads:[Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vmAllowSuspension:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ThreadGroup;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;Ljava/lang/ThreadGroup;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/ThreadGroup;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkParentAccess(Ljava/lang/ThreadGroup;)Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enumerate([Ljava/lang/Thread;IZ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enumerate([Ljava/lang/ThreadGroup;IZ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/Thread;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/ThreadGroup;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stopOrSuspend(Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "activeCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "activeGroupCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Thread;)V": {"other": [".method"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "addUnstarted()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allowThreadSuspension(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccess()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "destroy()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate([Ljava/lang/Thread;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate([Ljava/lang/Thread;Z)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate([Ljava/lang/ThreadGroup;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate([Ljava/lang/ThreadGroup;Z)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxPriority()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/lang/ThreadGroup;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interrupt()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDaemon()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDestroyed()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/io/PrintStream;I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parentOf(Ljava/lang/ThreadGroup;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resume()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDaemon(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxPriority(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stop()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "suspend()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "threadStartFailed(Ljava/lang/Thread;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadTerminated(Ljava/lang/Thread;)V": {"other": [".method"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "uncaughtException(Ljava/lang/Thread;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ThreadLocal$SuppliedThreadLocal;": {"fields": {"supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;": {"fields": {"value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ThreadLocal;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/ThreadLocal$ThreadLocalMap-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/ThreadLocal$ThreadLocalMap;": {"fields": {"INITIAL_CAPACITY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mgetEntry(Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mremove(Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mset(Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal;Ljava/lang/Object;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/ThreadLocal$ThreadLocalMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/ThreadLocal$ThreadLocalMap;Ljava/lang/ThreadLocal$ThreadLocalMap-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/ThreadLocal;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cleanSomeSlots(II)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleEntries()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleEntry(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntry(Ljava/lang/ThreadLocal;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryAfterMiss(Ljava/lang/ThreadLocal;ILjava/lang/ThreadLocal$ThreadLocalMap$Entry;)Ljava/lang/ThreadLocal$ThreadLocalMap$Entry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextIndex(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevIndex(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rehash()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/ThreadLocal;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replaceStaleEntry(Ljava/lang/ThreadLocal;Ljava/lang/Object;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resize()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/lang/ThreadLocal;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setThreshold(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/ThreadLocal;": {"fields": {"HASH_INCREMENT:I": {"value": "0x61c88647", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextHashCode:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadLocalHashCode:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetthreadLocalHashCode(Ljava/lang/ThreadLocal;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createInheritedMap(Ljava/lang/ThreadLocal$ThreadLocalMap;)Ljava/lang/ThreadLocal$ThreadLocalMap;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextHashCode()I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setInitialValue()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withInitial(Ljava/util/function/Supplier;)Ljava/lang/ThreadLocal;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createMap(Ljava/lang/Thread;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMap(Ljava/lang/Thread;)Ljava/lang/ThreadLocal$ThreadLocalMap;": {"other": [".method"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Throwable$PrintStreamOrWriter-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/Throwable$PrintStreamOrWriter;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Throwable$PrintStreamOrWriter-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock()Ljava/lang/Object;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "println(Ljava/lang/Object;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Throwable$SentinelHolder;": {"fields": {"STACK_TRACE_ELEMENT_SENTINEL:Ljava/lang/StackTraceElement;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STACK_TRACE_SENTINEL:[Ljava/lang/StackTraceElement;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Throwable$WrappedPrintStream;": {"fields": {"printStream:Ljava/io/PrintStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/PrintStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "println(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Throwable$WrappedPrintWriter;": {"fields": {"printWriter:Ljava/io/PrintWriter;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/PrintWriter;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "println(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/Throwable;": {"fields": {"CAUSE_CAPTION:Ljava/lang/String;": {"value": "\"Caused by: \"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_THROWABLE_ARRAY:[Ljava/lang/Throwable;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NULL_CAUSE_MESSAGE:Ljava/lang/String;": {"value": "\"Cannot suppress a null exception.\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SELF_SUPPRESSION_MESSAGE:Ljava/lang/String;": {"value": "\"Self-suppression not permitted\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SUPPRESSED_CAPTION:Ljava/lang/String;": {"value": "\"Suppressed: \"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2a39cad8c6884735L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "backtrace:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "cause:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "detailMessage:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "stackTrace:[Ljava/lang/StackTraceElement;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "suppressedExceptions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOurStackTrace()[Ljava/lang/StackTraceElement;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "nativeFillInStackTrace()Ljava/lang/Object;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "nativeGetStackTrace(Ljava/lang/Object;)[Ljava/lang/StackTraceElement;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printEnclosedStackTrace(Ljava/lang/Throwable$PrintStreamOrWriter;[Ljava/lang/StackTraceElement;Ljava/lang/String;Ljava/lang/String;Ljava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printStackTrace(Ljava/lang/Throwable$PrintStreamOrWriter;)V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "validateSuppressedExceptionsList(Ljava/util/List;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "addSuppressed(Ljava/lang/Throwable;)V": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fillInStackTrace()Ljava/lang/Throwable;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalizedMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStackTrace()[Ljava/lang/StackTraceElement;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSuppressed()[Ljava/lang/Throwable;": {"other": [".method", "public", "final", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initCause(Ljava/lang/Throwable;)Ljava/lang/Throwable;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printStackTrace()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printStackTrace(Ljava/io/PrintStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printStackTrace(Ljava/io/PrintWriter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStackTrace([Ljava/lang/StackTraceElement;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/TypeNotPresentException;": {"fields": {"serialVersionUID:J": {"value": "-0x46cb27489add30e0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "typeName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UNIXProcess$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/concurrent/Executor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/UNIXProcess$2;": {"fields": {"this$0:Ljava/lang/UNIXProcess;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$fds:[I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/UNIXProcess;[I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/UNIXProcess$3;": {"fields": {"this$0:Ljava/lang/UNIXProcess;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/UNIXProcess;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UNIXProcess$ProcessPipeInputStream;": {"fields": {}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "drainInputStream(Ljava/io/InputStream;)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processExited()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/UNIXProcess$ProcessPipeOutputStream;": {"fields": {}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processExited()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/UNIXProcess$ProcessReaperThreadFactory$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/ThreadGroup;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/UNIXProcess$ProcessReaperThreadFactory-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/UNIXProcess$ProcessReaperThreadFactory;": {"fields": {"group:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/UNIXProcess$ProcessReaperThreadFactory-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRootThreadGroup()Ljava/lang/ThreadGroup;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UNIXProcess;": {"fields": {"processReaperExecutor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exitcode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasExited:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pid:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "stderr:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stdin:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stdout:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetpid(Ljava/lang/UNIXProcess;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mwaitForProcessExit(Ljava/lang/UNIXProcess;I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B[BI[BI[B[IZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "destroyProcess(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forkAndExec([B[BI[BI[B[IZ)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileDescriptor(I)Ljava/io/FileDescriptor;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "waitForProcessExit(I)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "destroy()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exitValue()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initStreams([I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processExited(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "waitFor()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UnsatisfiedLinkError;": {"fields": {"serialVersionUID:J": {"value": "-0x37c7936202f0ef44L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UnknownError;": {"fields": {"serialVersionUID:J": {"value": "0x2309d67432ec5009L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UnsupportedClassVersionError;": {"fields": {"serialVersionUID:J": {"value": "-0x62daf8b40fd8519dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/UnsupportedOperationException;": {"fields": {"serialVersionUID:J": {"value": "-0x113e9a18ed7c7481L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/VerifyError;": {"fields": {"serialVersionUID:J": {"value": "0x612bf7b3861810e1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/VirtualMachineError;": {"fields": {"serialVersionUID:J": {"value": "0x39c25654802f0e1eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/Void;": {"fields": {"TYPE:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Ljava/lang/annotation/Annotation;": {"fields": {}, "methods": {"annotationType()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/AnnotationTypeMismatchException;": {"fields": {"serialVersionUID:J": {"value": "0x70c5160eddbf1a8fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "element:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "foundType:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/reflect/Method;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/reflect/Method;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "foundType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/AnnotationFormatError;": {"fields": {"serialVersionUID:J": {"value": "-0x3b12d78499bfaa04L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/Documented;": {"fields": {}, "methods": {}}, "Ljava/lang/annotation/ElementType;": {"fields": {"$VALUES:[Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ANNOTATION_TYPE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONSTRUCTOR:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FIELD:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCAL_VARIABLE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "METHOD:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MODULE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PACKAGE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PARAMETER:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE_PARAMETER:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE_USE:Ljava/lang/annotation/ElementType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/annotation/ElementType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/annotation/ElementType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/IncompleteAnnotationException;": {"fields": {"serialVersionUID:J": {"value": "0x75330357ffffeac8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "annotationType:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "elementName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "annotationType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elementName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/Inherited;": {"fields": {}, "methods": {}}, "Ljava/lang/annotation/Native;": {"fields": {}, "methods": {}}, "Ljava/lang/annotation/Repeatable;": {"fields": {}, "methods": {"value()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/Retention;": {"fields": {}, "methods": {"value()Ljava/lang/annotation/RetentionPolicy;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/RetentionPolicy;": {"fields": {"$VALUES:[Ljava/lang/annotation/RetentionPolicy;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CLASS:Ljava/lang/annotation/RetentionPolicy;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RUNTIME:Ljava/lang/annotation/RetentionPolicy;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SOURCE:Ljava/lang/annotation/RetentionPolicy;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/annotation/RetentionPolicy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/annotation/RetentionPolicy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/annotation/Target;": {"fields": {}, "methods": {"value()[Ljava/lang/annotation/ElementType;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/CallSite;": {"fields": {"GET_TARGET:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TARGET_OFFSET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeGetTarget()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrongTargetType(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/WrongMethodTypeException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkTargetChange(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dynamicInvoker()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTarget()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTargetVolatile()Ljava/lang/invoke/MethodHandle;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeDynamicInvoker()Ljava/lang/invoke/MethodHandle;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setTarget(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTargetNormal(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setTargetVolatile(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/ConstantCallSite;": {"fields": {"isFrozen:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dynamicInvoker()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTarget()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTarget(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/LambdaConversionException;": {"fields": {"serialVersionUID:J": {"value": "0x12cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;ZZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/LambdaMetafactory;": {"fields": {"FLAG_BRIDGES:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLAG_MARKERS:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLAG_SERIALIZABLE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "altMetafactory(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "metafactory(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandle$PolymorphicSignature;": {"fields": {}, "methods": {}}, "Ljava/lang/invoke/MethodHandle;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IGET:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_DIRECT:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_INTERFACE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_STATIC:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_SUPER:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_TRANSFORM:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_VAR_HANDLE:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_VAR_HANDLE_EXACT:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INVOKE_VIRTUAL:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IPUT:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SGET:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPUT:I": {"value": "0xb", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "artFieldOrMethod:J": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asTypeCache:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedSpreadInvoker:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handleKind:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JILjava/lang/invoke/MethodType;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asSpreaderChecks(Ljava/lang/Class;II)Ljava/lang/invoke/MethodType;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asTypeCached(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spreadArrayChecks(Ljava/lang/Class;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformInternal(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asCollector(ILjava/lang/Class;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asCollector(Ljava/lang/Class;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asCollectorChecks(Ljava/lang/Class;II)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asFixedArity()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asSpreader(ILjava/lang/Class;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asSpreader(Ljava/lang/Class;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asType(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asTypeUncached(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asVarargsCollector(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bindTo(Ljava/lang/Object;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHandleKind()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invoke([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeExact([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeExactWithFrame(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeWithArguments(Ljava/util/List;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeWithArguments([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarargsCollector()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "standardString()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withVarargs(Z)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandleImpl$HandleInfo;": {"fields": {"handle:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "member:Ljava/lang/reflect/Member;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/reflect/Member;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethodType()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReferenceKind()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reflectAs(Ljava/lang/Class;Ljava/lang/invoke/MethodHandles$Lookup;)Ljava/lang/reflect/Member;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandleImpl;": {"fields": {"info:Ljava/lang/invoke/MethodHandleImpl$HandleInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JILjava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMemberInternal()Ljava/lang/reflect/Member;": {"other": [".method", "public", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reveal()Ljava/lang/invoke/MethodHandleInfo;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandleInfo;": {"fields": {"REF_getField:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_getStatic:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_invokeInterface:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_invokeSpecial:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_invokeStatic:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_invokeVirtual:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_newInvokeSpecial:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_putField:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF_putStatic:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"refKindIsField(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refKindIsValid(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refKindName(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "referenceKindToString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(ILjava/lang/Class;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethodType()Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReferenceKind()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarArgs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reflectAs(Ljava/lang/Class;Ljava/lang/invoke/MethodHandles$Lookup;)Ljava/lang/reflect/Member;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandleNatives$Constants;": {"fields": {"REF_LIMIT:B": {"value": "0xat", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_NONE:B": {"value": "0x0t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_getField:B": {"value": "0x1t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_getStatic:B": {"value": "0x2t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_invokeInterface:B": {"value": "0x9t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_invokeSpecial:B": {"value": "0x7t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_invokeStatic:B": {"value": "0x6t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_invokeVirtual:B": {"value": "0x5t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_newInvokeSpecial:B": {"value": "0x8t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_putField:B": {"value": "0x3t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REF_putStatic:B": {"value": "0x4t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandleNatives;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "refKindIsField(B)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "refKindIsValid(I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "refKindName(B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandleStatics;": {"fields": {"UNSAFE:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NYI()Ljava/lang/Error;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "message(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "message(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalArgumentException(Ljava/lang/String;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalArgumentException(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalArgumentException(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalStateException(Ljava/lang/String;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalStateException(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInternalError(Ljava/lang/String;)Ljava/lang/InternalError;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInternalError(Ljava/lang/String;Ljava/lang/Throwable;)Ljava/lang/InternalError;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInternalError(Ljava/lang/Throwable;)Ljava/lang/InternalError;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uncaughtException(Ljava/lang/Throwable;)Ljava/lang/Error;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda10;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda11;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda13;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda14;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda15;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$3:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda16;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda17;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda18;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda19;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda20;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda22;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda21;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda24;": {"fields": {"f$0:Ljava/lang/Class;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda23;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda25;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda4;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda7;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda5;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda8;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles$$ExternalSyntheticLambda9;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet$WeakEntry;": {"fields": {"hashcode:I": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodHandles;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HANDLES:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENTITY_MHS:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_Array_newInstance:I": {"value": "0xb", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_LIMIT:I": {"value": "0xc", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_arrayIdentity:I": {"value": "0x5", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_cast:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_copyAsPrimitiveArray:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_countedLoopPred:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_countedLoopStep:I": {"value": "0x7", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_fillNewArray:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_fillNewTypedArray:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_initIterator:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_iterateNext:I": {"value": "0xa", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_iteratePred:I": {"value": "0x9", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MH_selectAlternative:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZERO_MHS:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smgetMethodHandleImpl(Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandleImpl;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayConstructor(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayElementGetter([BI)B": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([CI)C": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([DI)D": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([FI)F": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([II)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([JI)J": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayElementGetter([SI)S": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementGetter([ZI)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayElementSetter([BIB)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([CIC)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([DID)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([FIF)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([III)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([JIJ)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([SIS)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementSetter([ZIZ)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayElementVarHandle(Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayLength(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "buildCommonSuffix(Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;I)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteArrayViewVarHandle(Ljava/lang/Class;Ljava/nio/ByteOrder;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteBufferViewVarHandle(Ljava/lang/Class;Ljava/nio/ByteOrder;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "catchException(Ljava/lang/invoke/MethodHandle;Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkClassIsArray(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkTypeIsViewable(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collectArguments(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collectArgumentsChecks(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constant(Ljava/lang/Class;Ljava/lang/Object;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyTypes([Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "countedLoop(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countedLoop(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countedLoopChecks(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "countedLoopPredicate(II)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "countedLoopStep(II)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doWhileLoop(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dropArgumentChecks(Ljava/lang/invoke/MethodType;ILjava/util/List;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dropArguments(Ljava/lang/invoke/MethodHandle;ILjava/util/List;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dropArguments(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dropArguments0(Ljava/lang/invoke/MethodHandle;ILjava/util/List;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dropArgumentsToMatch(Ljava/lang/invoke/MethodHandle;ILjava/util/List;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dropArgumentsToMatch(Ljava/lang/invoke/MethodHandle;ILjava/util/List;IZ)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "empty(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exactInvoker(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "explicitCastArguments(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "explicitCastArgumentsChecks(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fillParameterTypes(Ljava/util/List;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterArgument(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterArgumentChecks(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filterArguments(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filterArgumentsCheckArity(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filterReturnValue(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filterReturnValueChecks(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixArities(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "foldArgumentChecks(ILjava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "foldArguments(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "foldArguments(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConstantHandle(I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMethodHandleImpl(Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandleImpl;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "guardWithTest(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identity(B)B": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(C)C": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(D)D": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(F)F": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(I)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(J)J": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identity(S)S": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity(Z)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identityOrVoid(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIterator(Ljava/lang/Iterable;)Ljava/util/Iterator;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insertArguments(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/Object;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertArgumentsChecks(Ljava/lang/invoke/MethodHandle;II)[Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invoker(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterateNext(Ljava/util/Iterator;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iteratePredicate(Ljava/util/Iterator;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iteratedLoop(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iteratedLoopChecks(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$fillParameterTypes$17(Ljava/util/List;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$longestParameterList$10(ILjava/lang/invoke/MethodType;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$longestParameterList$11(Ljava/util/List;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$longestParameterList$12(Ljava/util/List;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$0([Ljava/lang/invoke/MethodHandle;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$1(Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;[Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$2(Ljava/lang/Class;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$3(Ljava/util/List;Ljava/util/List;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$4(Ljava/util/List;Ljava/util/List;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$5(I)[Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$6(I)[Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$7(I)[Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loop$8(I)[Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loopChecks0$9([Ljava/lang/invoke/MethodHandle;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loopChecks1b$13(Ljava/util/List;Ljava/lang/invoke/MethodType;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loopChecks1cd$14(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loopChecks1cd$15(Ljava/lang/Class;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$loopChecks2$16(Ljava/util/List;Ljava/lang/invoke/MethodType;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longestParameterList(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longestParameterList(Ljava/util/stream/Stream;I)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookup()Ljava/lang/invoke/MethodHandles$Lookup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loop([[Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loopChecks0([[Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopChecks1a(ILjava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopChecks1b(Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopChecks1cd(Ljava/util/List;Ljava/util/List;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopChecks2(Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeConstantHandle(I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeIdentity(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeZero(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "methodHandleForVarHandleAccessor(Ljava/lang/invoke/VarHandle$AccessMode;Ljava/lang/invoke/MethodType;Z)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "misMatchedTypes(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permuteArgumentChecks([ILjava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permuteArguments(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;[I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "privateLookupIn(Ljava/lang/Class;Ljava/lang/invoke/MethodHandles$Lookup;)Ljava/lang/invoke/MethodHandles$Lookup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publicLookup()Ljava/lang/invoke/MethodHandles$Lookup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reflectAs(Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;)Ljava/lang/reflect/Member;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCachedHandle(ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCachedMethodHandle([Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spreadInvoker(Ljava/lang/invoke/MethodType;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "swapArguments(Ljava/lang/invoke/MethodHandle;II)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwException(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryFinally(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryFinallyChecks(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "varHandleExactInvoker(Ljava/lang/invoke/VarHandle$AccessMode;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "varHandleInvoker(Ljava/lang/invoke/VarHandle$AccessMode;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whileLoop(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whileLoopChecks(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zero(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zero(Lsun/invoke/util/Wrapper;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodHandles$Lookup;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL_MODES:I": {"value": "0xf", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IMPL_LOOKUP:Ljava/lang/invoke/MethodHandles$Lookup;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PACKAGE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIVATE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROTECTED:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC_LOOKUP:Ljava/lang/invoke/MethodHandles$Lookup;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allowedModes:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkReturnType(Ljava/lang/reflect/Method;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSpecialCaller(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkUnprivilegedlookupClass(Ljava/lang/Class;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "commonFieldChecks(Ljava/lang/reflect/Field;Ljava/lang/Class;Ljava/lang/Class;ZZ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createMethodHandle(Ljava/lang/reflect/Method;ILjava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createMethodHandleForConstructor(Ljava/lang/reflect/Constructor;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findAccessor(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;I)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findAccessor(Ljava/lang/reflect/Field;Ljava/lang/Class;Ljava/lang/Class;IZ)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findFieldOfType(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/reflect/Field;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findSpecial(Ljava/lang/reflect/Method;Ljava/lang/invoke/MethodType;Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findVirtualForMH(Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findVirtualForVH(Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixmods(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasPrivateAccess()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initMethodType(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwMakeAccessException(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessFailedMessage(Ljava/lang/Class;Ljava/lang/Class;I)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bind(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccess(Ljava/lang/Class;Ljava/lang/Class;ILjava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findConstructor(Ljava/lang/Class;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findGetter(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findSetter(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findSpecial(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findStatic(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findStaticGetter(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findStaticSetter(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findStaticVarHandle(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findVarHandle(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findVirtual(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "in(Ljava/lang/Class;)Ljava/lang/invoke/MethodHandles$Lookup;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupModes()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "revealDirect(Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodHandleInfo;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflect(Ljava/lang/reflect/Method;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflectConstructor(Ljava/lang/reflect/Constructor;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflectGetter(Ljava/lang/reflect/Field;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflectSetter(Ljava/lang/reflect/Field;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflectSpecial(Ljava/lang/reflect/Method;Ljava/lang/Class;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unreflectVarHandle(Ljava/lang/reflect/Field;)Ljava/lang/invoke/VarHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet;": {"fields": {"map:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stale:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleElements()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/MethodType;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_JVM_ARITY:I": {"value": "0xff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_MH_ARITY:I": {"value": "0xfe", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_MH_INVOKER_ARITY:I": {"value": "0xfd", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NO_PTYPES:[Ljava/lang/Class;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internTable:Ljava/lang/invoke/MethodType$ConcurrentWeakInternSet;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "objectOnlyTypes:[Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ptypesOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rtypeOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x124L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "form:Ljava/lang/invoke/MethodTypeForm;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "methodDescriptor:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ptypes:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rtype:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapAlt:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;[Ljava/lang/Class;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MethodType_init(Ljava/lang/Class;[Ljava/lang/Class;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canConvert(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canConvertParameters([Ljava/lang/Class;[Ljava/lang/Class;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPtype(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPtypes([Ljava/lang/Class;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkRtype(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSlotCount(I)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/invoke/MethodType;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitCastEquivalentToAsType(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromMethodDescriptorString(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "genericMethodType(I)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "genericMethodType(IZ)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listToArray(Ljava/util/List;)[Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeImpl(Ljava/lang/Class;[Ljava/lang/Class;Z)Ljava/lang/invoke/MethodType;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "methodType(Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodType(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodType(Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodType(Ljava/lang/Class;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodType(Ljava/lang/Class;Ljava/util/List;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodType(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newIndexOutOfBoundsException(Ljava/lang/Object;)Ljava/lang/IndexOutOfBoundsException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toFieldDescriptorString(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unwrapWithNoPrims(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapWithPrims(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "appendParameterTypes(Ljava/util/List;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendParameterTypes([Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asCollectorType(Ljava/lang/Class;II)Ljava/lang/invoke/MethodType;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asSpreaderType(Ljava/lang/Class;II)Ljava/lang/invoke/MethodType;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeParameterType(ILjava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "changeReturnType(Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dropParameterTypes(II)Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "effectivelyIdenticalParameters(ILjava/util/List;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "erase()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "explicitCastEquivalentToAsType(Ljava/lang/invoke/MethodType;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "form()Ljava/lang/invoke/MethodTypeForm;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generic()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrimitives()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWrappers()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertParameterTypes(ILjava/util/List;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertParameterTypes(I[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConvertibleTo(Ljava/lang/invoke/MethodType;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isGeneric()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastParameterType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leadingReferenceParameter()Ljava/lang/Class;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterArray()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterList()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterSlotCount()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterType(I)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ptypes()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replaceParameterTypes(II[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "returnType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rtype()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toMethodDescriptorString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MethodTypeForm;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ERASE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INTS:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LONGS:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NO_CHANGE:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RAW_RETURN:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNWRAP:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WRAP:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "argCounts:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "argToSlotTable:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "basicType:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "erasedType:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primCounts:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slotToArgTable:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/invoke/MethodType;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assertIsBasicType()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalize(Ljava/lang/Class;I)Ljava/lang/Class;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalize(Ljava/lang/invoke/MethodType;II)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalizeAll([Ljava/lang/Class;I)[Ljava/lang/Class;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findForm(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodTypeForm;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pack(IIII)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unpack(JI)C": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "argSlotToParameter(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "basicType()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "erasedType()Ljava/lang/invoke/MethodType;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasLongPrimitives()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNonVoidPrimitives()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasPrimitives()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "longPrimitiveParameterCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "longPrimitiveReturnCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterSlotCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterToArgSlot(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primitiveParameterCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primitiveReturnCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "returnCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "returnSlotCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/MutableCallSite;": {"fields": {}, "methods": {"(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/invoke/MethodType;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dynamicInvoker()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTarget()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTarget(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/SerializedLambda;": {"fields": {}, "methods": {"(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getCapturedArg(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCapturedArgCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getCapturingClass()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getFunctionalInterfaceClass()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getFunctionalInterfaceMethodName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getFunctionalInterfaceMethodSignature()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getImplClass()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getImplMethodKind()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getImplMethodName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getImplMethodSignature()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getInstantiatedMethodType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Stable;": {"fields": {}, "methods": {}}, "Ljava/lang/invoke/Transformers$AlwaysThrow;": {"fields": {"exceptionType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ArrayConstructor;": {"fields": {"componentType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ArrayLength;": {"fields": {"arrayType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$AsTypeAdapter;": {"fields": {"target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adaptArgument(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adaptArguments(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adaptReturnValue(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBoxedPrimitiveClass(C)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwClassCastException(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwWrongMethodTypeException()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveByteAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CB)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveCharAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CC)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveDoubleAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CD)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveFloatAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CF)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveIntAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CI)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveLongAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CJ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveShortAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;CS)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePrimitiveVoidAs(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;C)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$BindTo;": {"fields": {"delegate:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "receiver:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$CatchException;": {"fields": {"exType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handler:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handlerArgsRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$CollectArguments;": {"fields": {"collector:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collectorRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range1:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range2:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "referencesOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stackFrameOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Collector;": {"fields": {"arrayLength:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leadingRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/Class;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Construct;": {"fields": {"callerRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constructorHandle:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInstantiable(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAbstract(Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getConstructorHandle()Ljava/lang/invoke/MethodHandle;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$DropArguments;": {"fields": {"delegate:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range1:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range2:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ExplicitCastArguments;": {"fields": {"target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badCast(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "box(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitCast(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitCastArguments(Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitCastPrimitives(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitCastReturnValue(Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsByte(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsChar(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)C": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsDouble(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)D": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsFloat(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)F": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsInt(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsLong(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimitiveAsShort(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ljava/lang/Class;)S": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwUnexpectedType(Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toBoolean(B)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unbox(Ljava/lang/Object;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unboxNonNull(Ljava/lang/Object;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unboxNull(Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$FilterArguments;": {"fields": {"filters:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deriveType(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$FilterReturnValue;": {"fields": {"allArgs:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$FoldArguments;": {"fields": {"combiner:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "combinerArgs:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leadingArgs:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "position:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "referencesOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stackFrameOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingArgs:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deriveType(Ljava/lang/invoke/MethodHandle;ILjava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$GuardWithTest;": {"fields": {"fallback:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "test:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "testArgsRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$InsertArguments;": {"fields": {"pos:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range1:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range2:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;I[Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Invoker;": {"fields": {"copyRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isExactInvoker:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "targetType:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodType;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exactMatch(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exactMatch(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Loop;": {"fields": {"finis:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inits:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopVarsRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopVarsType:Ljava/lang/invoke/MethodType;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preds:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "steps:[Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suffixRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/util/List;[Ljava/lang/invoke/MethodHandle;[Ljava/lang/invoke/MethodHandle;[Ljava/lang/invoke/MethodHandle;[Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deduceLoopVarsType([Ljava/lang/invoke/MethodHandle;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doFinish(Ljava/lang/invoke/MethodHandle;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doPredicate(Ljava/lang/invoke/MethodHandle;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doStep(Ljava/lang/invoke/MethodHandle;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init(Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prepareFrame(Ljava/lang/invoke/MethodType;Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)Ldalvik/system/EmulatedStackFrame;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$PermuteArguments;": {"fields": {"reorder:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;[I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ReferenceArrayElementGetter;": {"fields": {"arrayClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ReferenceArrayElementSetter;": {"fields": {"arrayClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$ReferenceIdentity;": {"fields": {"type:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Spreader;": {"fields": {"arrayOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "componentType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leadingRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "numArrayArgs:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingRange:Ldalvik/system/EmulatedStackFrame$Range;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spreadArray(Ljava/lang/Class;Ljava/lang/Object;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$Transformer;": {"fields": {}, "methods": {"(Ljava/lang/invoke/MethodType;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/invoke/MethodType;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeFromTransform(Ljava/lang/invoke/MethodHandle;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeExactFromTransform(Ljava/lang/invoke/MethodHandle;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$TryFinally;": {"fields": {"cleanup:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prepareCleanupFrame(Ldalvik/system/EmulatedStackFrame;Ljava/lang/Throwable;)Ldalvik/system/EmulatedStackFrame;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers$VarargsCollector;": {"fields": {"arrayType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "target:Ljava/lang/invoke/MethodHandle;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arityArgumentsConvertible([Ljava/lang/Class;ILjava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "booleanArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "byteArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collectArguments(CLjava/lang/Class;Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyParameter(Ldalvik/system/EmulatedStackFrame$StackFrameReader;Ldalvik/system/EmulatedStackFrame$StackFrameWriter;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubleArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "floatArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "intArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastParameterTypeIsAnArray([Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "longArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeArityArray(Ljava/lang/invoke/MethodType;Ldalvik/system/EmulatedStackFrame$StackFrameReader;ILjava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeTargetFrameType(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodType;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prepareFrame(Ldalvik/system/EmulatedStackFrame;Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "referenceArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shortArray(Ldalvik/system/EmulatedStackFrame$StackFrameReader;[Ljava/lang/Class;II)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwWrongMethodTypeException(Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asFixedArity()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asTypeUncached(Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/MethodHandle;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isVarargsCollector()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withVarargs(Z)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/Transformers$ZeroValue;": {"fields": {}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transform(Ldalvik/system/EmulatedStackFrame;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/Transformers;": {"fields": {"TRANSFORM_INTERNAL:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetTRANSFORM_INTERNAL()Ljava/lang/reflect/Method;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/VarHandle$1;": {"fields": {"$SwitchMap$java$lang$invoke$VarHandle$AccessType:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/VarHandle$AccessMode;": {"fields": {"$VALUES:[Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMPARE_AND_EXCHANGE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMPARE_AND_EXCHANGE_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMPARE_AND_EXCHANGE_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMPARE_AND_SET:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_ADD:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_ADD_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_ADD_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_AND:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_AND_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_AND_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_OR:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_OR_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_OR_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_XOR:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_XOR_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_BITWISE_XOR_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_SET:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_SET_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_AND_SET_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_OPAQUE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GET_VOLATILE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SET:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SET_OPAQUE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SET_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SET_VOLATILE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEAK_COMPARE_AND_SET:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEAK_COMPARE_AND_SET_ACQUIRE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEAK_COMPARE_AND_SET_PLAIN:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEAK_COMPARE_AND_SET_RELEASE:Ljava/lang/invoke/VarHandle$AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodNameToAccessMode:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "at:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "methodName:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/invoke/VarHandle$AccessType;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueFromMethodName(Ljava/lang/String;)Ljava/lang/invoke/VarHandle$AccessMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/lang/invoke/VarHandle$AccessMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/lang/invoke/VarHandle$AccessMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/VolatileCallSite;": {"fields": {}, "methods": {"(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/invoke/MethodType;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dynamicInvoker()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTarget()Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTarget(Ljava/lang/invoke/MethodHandle;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/VarHandle;": {"fields": {"ALL_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ATOMIC_UPDATE_ACCESS_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BITWISE_ATOMIC_UPDATE_ACCESS_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NUMERIC_ATOMIC_UPDATE_ACCESS_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "READ_ACCESS_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSAFE:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WRITE_ACCESS_MODES_BIT_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessModesBitMask:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "coordinateType0:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "coordinateType1:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "varType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/Class;ZLjava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;ZLjava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessTypesToBitMask(Ljava/util/EnumSet;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquireFence()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "alignedAccessModesBitMask(Ljava/lang/Class;Z)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullFence()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadLoadFence()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "releaseFence()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storeStoreFence()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unalignedAccessModesBitMask(Ljava/lang/Class;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessModeType(Ljava/lang/invoke/VarHandle$AccessMode;)Ljava/lang/invoke/MethodType;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet([Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "coordinateTypes()Ljava/util/List;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAddAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAddRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseAnd([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseAndAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseAndRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseOr([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseOrAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseOrRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseXor([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseXorAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndBitwiseXorRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSetAcquire([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSetRelease([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVolatile([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAccessModeSupported(Ljava/lang/invoke/VarHandle$AccessMode;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set([Ljava/lang/Object;)V": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque([Ljava/lang/Object;)V": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease([Ljava/lang/Object;)V": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setVolatile([Ljava/lang/Object;)V": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMethodHandle(Ljava/lang/invoke/VarHandle$AccessMode;)Ljava/lang/invoke/MethodHandle;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "varType()Ljava/lang/Class;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet([Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire([Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain([Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease([Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/invoke/VarHandle$AccessType;": {"fields": {"$VALUES:[Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMPARE_AND_EXCHANGE:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COMPARE_AND_SET:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GET_AND_UPDATE:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GET_AND_UPDATE_BITWISE:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GET_AND_UPDATE_NUMERIC:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SET:Ljava/lang/invoke/VarHandle$AccessType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocateParameters(ILjava/lang/Class;[Ljava/lang/Class;)[Ljava/lang/Class;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillParameters([Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Class;)I": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/lang/invoke/VarHandle$AccessType;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/lang/invoke/VarHandle$AccessType;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessModeType(Ljava/lang/Class;Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/invoke/WrongMethodTypeException;": {"fields": {"serialVersionUID:J": {"value": "0x124L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/ref/Cleaner$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apply(Ljava/lang/ref/Cleaner;)Ljdk/internal/ref/CleanerImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/ref/Cleaner$Cleanable;": {"fields": {}, "methods": {"clean()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/Cleaner;": {"fields": {"impl:Ljdk/internal/ref/CleanerImpl;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljava/lang/ref/Cleaner;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create(Ljava/util/concurrent/ThreadFactory;)Ljava/lang/ref/Cleaner;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/lang/Object;Ljava/lang/Runnable;)Ljava/lang/ref/Cleaner$Cleanable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/PhantomReference;": {"fields": {}, "methods": {"(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/Reference$SinkHolder$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/Reference$SinkHolder;": {"fields": {"finalize_count:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sink:Ljava/lang/Object;": {"value": null, "other": [".field", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sinkUser:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetfinalize_count()I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputfinalize_count(I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/ref/Reference;": {"fields": {"disableIntrinsic:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slowPathEnabled:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pendingNext:Ljava/lang/ref/Reference;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queueNext:Ljava/lang/ref/Reference;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "referent:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getReferent()Ljava/lang/Object;": {"other": [".method", "private", "final", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "reachabilityFence(Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refersTo0(Ljava/lang/Object;)Z": {"other": [".method", "private", "final", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearReferent()V": {"other": [".method", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueue()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEnqueued()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refersTo(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/ReferenceQueue;": {"fields": {"currentQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sQueueNextUnenqueued:Ljava/lang/ref/Reference;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unenqueued:Ljava/lang/ref/Reference;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "head:Ljava/lang/ref/Reference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/lang/ref/Reference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/ref/Reference;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "enqueueLocked(Ljava/lang/ref/Reference;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueuePending(Ljava/lang/ref/Reference;Ljava/util/concurrent/atomic/AtomicInteger;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCurrentQueue()Ljava/lang/ref/ReferenceQueue;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reallyPollLocked()Ljava/lang/ref/Reference;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueue(Ljava/lang/ref/Reference;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEnqueued(Ljava/lang/ref/Reference;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "poll()Ljava/lang/ref/Reference;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/ref/Reference;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(J)Ljava/lang/ref/Reference;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/SoftReference;": {"fields": {"clock:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timestamp:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/ref/WeakReference;": {"fields": {}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/AccessibleObject;": {"fields": {"override:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAccessible([Ljava/lang/reflect/AccessibleObject;Z)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAccessible0(Ljava/lang/reflect/AccessibleObject;Z)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAccessible()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAccessible(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/AnnotatedElement;": {"fields": {}, "methods": {"getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Array;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badArray(Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createMultiArray(Ljava/lang/Class;[I)Ljava/lang/Object;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createObjectArray(Ljava/lang/Class;I)Ljava/lang/Object;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/Object;I)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/Object;I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(Ljava/lang/Object;I)B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar(Ljava/lang/Object;I)C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/Object;I)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/Object;I)F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/Object;I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLength(Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/Object;I)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(Ljava/lang/Object;I)S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incompatibleType(Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(Ljava/lang/Class;I)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance(Ljava/lang/Class;I)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/lang/Class;[I)Ljava/lang/Object;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notAnArray(Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/lang/Object;ILjava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(Ljava/lang/Object;IZ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(Ljava/lang/Object;IB)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setChar(Ljava/lang/Object;IC)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(Ljava/lang/Object;ID)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(Ljava/lang/Object;IF)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(Ljava/lang/Object;II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(Ljava/lang/Object;IJ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(Ljava/lang/Object;IS)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Constructor;": {"fields": {"ORDER_BY_SIGNATURE:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serializationClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serializationCtor:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance0([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "varargs", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInstanceFromSerialization(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExceptionTypes()[Ljava/lang/Class;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericExceptionTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericParameterTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterAnnotations()[[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterTypes()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeParameters()[Ljava/lang/reflect/TypeVariable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasGenericInformation()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarArgs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serializationCopy(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "specificToGenericStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specificToStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toGenericString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Executable$GenericInfo;": {"fields": {"formalTypeParameters:[Ljava/lang/reflect/TypeVariable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "genericExceptionTypes:Llibcore/reflect/ListOfTypes;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "genericParameterTypes:Llibcore/reflect/ListOfTypes;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "genericReturnType:Ljava/lang/reflect/Type;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Llibcore/reflect/ListOfTypes;Llibcore/reflect/ListOfTypes;Ljava/lang/reflect/Type;[Ljava/lang/reflect/TypeVariable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/reflect/Executable;": {"fields": {"accessFlags:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "artMethod:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "declaringClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "declaringClassOfOverriddenMethod:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dexMethodIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasRealParameterData:Z": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameters:[Ljava/lang/reflect/Parameter;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixMethodFlags(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotationNative(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredAnnotationsNative()[Ljava/lang/annotation/Annotation;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParameterAnnotationsNative()[[Ljava/lang/annotation/Annotation;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParameters0()[Ljava/lang/reflect/Parameter;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAnnotation()[Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAttribute()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAnnotationPresentNative(Ljava/lang/Class;)Z": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privateGetParameters()[Ljava/lang/reflect/Parameter;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "synthesizeAllParams()[Ljava/lang/reflect/Parameter;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifyParameters([Ljava/lang/reflect/Parameter;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareMethodParametersInternal(Ljava/lang/reflect/Method;)I": {"other": [".method", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equalNameAndParametersInternal(Ljava/lang/reflect/Method;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equalParamTypes([Ljava/lang/Class;[Ljava/lang/Class;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAccessFlags()I": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAllGenericParameterTypes()[Ljava/lang/reflect/Type;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArtMethod()J": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClassInternal()Ljava/lang/Class;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExceptionTypes()[Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericExceptionTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericParameterTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethodNameInternal()Ljava/lang/String;": {"other": [".method", "final", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMethodOrConstructorGenericInfoInternal()Ljava/lang/reflect/Executable$GenericInfo;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMethodReturnTypeInternal()Ljava/lang/Class;": {"other": [".method", "final", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getModifiers()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiersInternal()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterAnnotations()[[Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterAnnotationsInternal()[[Ljava/lang/annotation/Annotation;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParameterCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterCountInternal()I": {"other": [".method", "final", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParameterTypes()[Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterTypesInternal()[Ljava/lang/Class;": {"other": [".method", "final", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParameters()[Ljava/lang/reflect/Parameter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeParameters()[Ljava/lang/reflect/TypeVariable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasGenericInformation()Z": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasGenericInformationInternal()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasRealParameterData()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBridgeMethodInternal()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDefaultMethodInternal()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarArgs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printModifiersIfNonzero(Ljava/lang/StringBuilder;IZ)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "separateWithCommas([Ljava/lang/Class;Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sharedToGenericString(IZ)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sharedToString(IZ[Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specificToGenericStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specificToStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toGenericString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Field;": {"fields": {"accessFlags:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "artFieldIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "declaringClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnnotationNative(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNameInternal()Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAnnotation()[Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSignatureAttribute()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAnnotationPresentNative(Ljava/lang/Class;)Z": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArtField()J": {"other": [".method", "public", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBoolean(Ljava/lang/Object;)Z": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(Ljava/lang/Object;)B": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar(Ljava/lang/Object;)C": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/Object;)D": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/Object;)F": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericType()Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/Object;)I": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/Object;)J": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getShort(Ljava/lang/Object;)S": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnnotationPresent(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEnumConstant()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(Ljava/lang/Object;Z)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(Ljava/lang/Object;B)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setChar(Ljava/lang/Object;C)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(Ljava/lang/Object;D)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(Ljava/lang/Object;F)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(Ljava/lang/Object;I)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(Ljava/lang/Object;J)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(Ljava/lang/Object;S)V": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toGenericString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/GenericArrayType;": {"fields": {}, "methods": {"getGenericComponentType()Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/GenericDeclaration;": {"fields": {}, "methods": {"getTypeParameters()[Ljava/lang/reflect/TypeVariable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/GenericSignatureFormatError;": {"fields": {"serialVersionUID:J": {"value": "0x5d1e6be9e4bf48faL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/InvocationHandler;": {"fields": {}, "methods": {"invoke(Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/InvocationTargetException;": {"fields": {"serialVersionUID:J": {"value": "0x38b1268ed671246fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "target:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTargetException()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/MalformedParameterizedTypeException;": {"fields": {"serialVersionUID:J": {"value": "-0x4f0e3d20872a9da4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/MalformedParametersException;": {"fields": {"serialVersionUID:J": {"value": "0x1332c67L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Member;": {"fields": {"DECLARED:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Method$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/reflect/Method;": {"fields": {"ORDER_BY_SIGNATURE:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equalNameAndParameters(Ljava/lang/reflect/Method;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultValue()Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExceptionTypes()[Ljava/lang/Class;": {"other": [".method", "public", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericExceptionTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericParameterTypes()[Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericReturnType()Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterAnnotations()[[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterTypes()[Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReturnType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeParameters()[Ljava/lang/reflect/TypeVariable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasGenericInformation()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "varargs", "native"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBridge()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDefault()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarArgs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "specificToGenericStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specificToStringHeader(Ljava/lang/StringBuilder;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toGenericString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Modifier;": {"fields": {"ABSTRACT:I": {"value": "0x400", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ACCESS_MODIFIERS:I": {"value": "0x7", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ANNOTATION:I": {"value": "0x2000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BRIDGE:I": {"value": "0x40", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CLASS_MODIFIERS:I": {"value": "0xc1f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CONSTRUCTOR:I": {"value": "0x10000", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CONSTRUCTOR_MODIFIERS:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT:I": {"value": "0x400000", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ENUM:I": {"value": "0x4000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FIELD_MODIFIERS:I": {"value": "0xdf", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FINAL:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INTERFACE:I": {"value": "0x200", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INTERFACE_MODIFIERS:I": {"value": "0xc0f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MANDATED:I": {"value": "0x8000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "METHOD_MODIFIERS:I": {"value": "0xd3f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NATIVE:I": {"value": "0x100", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PARAMETER_MODIFIERS:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRIVATE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROTECTED:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STATIC:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRICT:I": {"value": "0x800", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYNCHRONIZED:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYNTHETIC:I": {"value": "0x1000", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TRANSIENT:I": {"value": "0x80", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VARARGS:I": {"value": "0x80", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "VOLATILE:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "classModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "constructorModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fieldModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interfaceModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAbstract(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConstructor(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFinal(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInterface(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMandated(I)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isNative(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPrivate(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isProtected(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPublic(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isStatic(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isStrict(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynchronized(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic(I)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isTransient(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVolatile(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "methodModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterModifiers()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Parameter;": {"fields": {"executable:Ljava/lang/reflect/Executable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modifiers:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterClassCache:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameterTypeCache:Ljava/lang/reflect/Type;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;ILjava/lang/reflect/Executable;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAnnotationNative(Ljava/lang/reflect/Executable;ILjava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotation(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotations()[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaredAnnotationsByType(Ljava/lang/Class;)[Ljava/lang/annotation/Annotation;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeclaringExecutable()Ljava/lang/reflect/Executable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModifiers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterizedType()Ljava/lang/reflect/Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRealName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isImplicit()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNamePresent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSynthetic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVarArgs()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/ParameterizedType;": {"fields": {}, "methods": {"getActualTypeArguments()[Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOwnerType()Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawType()Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/reflect/Method;Ljava/lang/reflect/Method;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/lang/reflect/Proxy$Key1;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy$Key2;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ref2:Ljava/lang/ref/WeakReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy$KeyFactory-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/reflect/Proxy$KeyFactory;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/Proxy$KeyFactory-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy$KeyX;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "refs:[Ljava/lang/ref/WeakReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals([Ljava/lang/ref/WeakReference;[Ljava/lang/ref/WeakReference;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy$ProxyClassFactory-IA;": {"fields": {}, "methods": {}}, "Ljava/lang/reflect/Proxy$ProxyClassFactory;": {"fields": {"nextUniqueNumber:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "proxyClassNamePrefix:Ljava/lang/String;": {"value": "\"$Proxy\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/Proxy$ProxyClassFactory-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Proxy;": {"fields": {"ORDER_BY_SIGNATURE_AND_SUBTYPE:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constructorParams:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key0:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "proxyClassCache:Ljava/lang/reflect/WeakCache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x1ed825df33efbc35L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "h:Ljava/lang/reflect/InvocationHandler;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"-$$Nest$sfgetORDER_BY_SIGNATURE_AND_SUBTYPE()Ljava/util/Comparator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetkey0()Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smdeduplicateAndGetExceptions(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgenerateProxy(Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/reflect/Method;[[Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetMethods([Ljava/lang/Class;)Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smvalidateReturnTypes(Ljava/util/List;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/reflect/InvocationHandler;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deduplicateAndGetExceptions(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateProxy(Ljava/lang/String;[Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/reflect/Method;[[Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInvocationHandler(Ljava/lang/Object;)Ljava/lang/reflect/InvocationHandler;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethods([Ljava/lang/Class;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMethodsRecursive([Ljava/lang/Class;Ljava/util/List;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProxyClass(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProxyClass0(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intersectExceptions([Ljava/lang/Class;[Ljava/lang/Class;)[Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invoke(Ljava/lang/reflect/Proxy;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "isProxyClass(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newProxyInstance(Ljava/lang/ClassLoader;[Ljava/lang/Class;Ljava/lang/reflect/InvocationHandler;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validateReturnTypes(Ljava/util/List;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/reflect/ReflectPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/Type;": {"fields": {}, "methods": {"getTypeName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/TypeVariable;": {"fields": {}, "methods": {"getBounds()[Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGenericDeclaration()Ljava/lang/reflect/GenericDeclaration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/UndeclaredThrowableException;": {"fields": {"serialVersionUID:J": {"value": "0x494d8dc73f9fcffL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "undeclaredThrowable:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUndeclaredThrowable()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/WeakCache$CacheKey;": {"fields": {"NULL_KEY:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "expungeFrom(Ljava/util/concurrent/ConcurrentMap;Ljava/util/concurrent/ConcurrentMap;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/WeakCache$CacheValue;": {"fields": {"hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/WeakCache$Factory;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameter:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/lang/reflect/WeakCache;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valuesMap:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/reflect/WeakCache;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/util/concurrent/ConcurrentMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/WeakCache$Value;": {"fields": {}, "methods": {}}, "Ljava/lang/reflect/WeakCache$LookupValue;": {"fields": {"value:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/lang/reflect/WeakCache;": {"fields": {"map:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "refQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reverseMap:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subKeyFactory:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueFactory:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetreverseMap(Ljava/lang/reflect/WeakCache;)Ljava/util/concurrent/ConcurrentMap;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetvalueFactory(Ljava/lang/reflect/WeakCache;)Ljava/util/function/BiFunction;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleEntries()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/lang/reflect/WildcardType;": {"fields": {}, "methods": {"getLowerBounds()[Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUpperBounds()[Ljava/lang/reflect/Type;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/BigDecimal$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Ljava/math/BigDecimal$StringBuilderHelper;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigDecimal$LongOverflow;": {"fields": {"LONGMAX:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONGMIN:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/math/BigDecimal;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigDecimal$2;": {"fields": {"$SwitchMap$java$math$RoundingMode:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigDecimal$StringBuilderHelper;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIGIT_ONES:[C": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIGIT_TENS:[C": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmpCharArray:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sb:Ljava/lang/StringBuilder;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCompactCharArray()[C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getStringBuilder()Ljava/lang/StringBuilder;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntCompact(J)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigDecimal$UnsafeHolder;": {"fields": {"intCompactOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intValOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIntCompactVolatile(Ljava/math/BigDecimal;J)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIntValVolatile(Ljava/math/BigDecimal;Ljava/math/BigInteger;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigDecimal;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIG_TEN_POWERS_TABLE:[Ljava/math/BigInteger;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIG_TEN_POWERS_TABLE_INITLEN:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIG_TEN_POWERS_TABLE_MAX:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIV_NUM_BASE:J": {"value": "0x100000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOUBLE_10_POW:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLOAT_10_POW:[F": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HALF_LONG_MAX_VALUE:J": {"value": "0x3fffffffffffffffL", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HALF_LONG_MIN_VALUE:J": {"value": "-0x4000000000000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFLATED:J": {"value": "-0x8000000000000000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFLATED_BIGINT:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONGLONG_TEN_POWERS_TABLE:[[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONG_TEN_POWERS_TABLE:[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_COMPACT_DIGITS:I": {"value": "0x12", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE:Ljava/math/BigDecimal;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ONE_HALF:Ljava/math/BigDecimal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE_TENTH:Ljava/math/BigDecimal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ROUND_CEILING:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_DOWN:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_FLOOR:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_HALF_DOWN:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_HALF_EVEN:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_HALF_UP:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_UNNECESSARY:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROUND_UP:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TEN:Ljava/math/BigDecimal;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THRESHOLDS_TABLE:[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZERO:Ljava/math/BigDecimal;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ZERO_SCALED_BY:[Ljava/math/BigDecimal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZERO_THROUGH_TEN:[Ljava/math/BigDecimal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x54c71557f981284fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "threadLocalStringBuilderHelper:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intCompact:J": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intVal:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "precision:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scale:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stringCache:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$minflated(Ljava/math/BigDecimal;)Ljava/math/BigInteger;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(DLjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(JLjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/math/BigInteger;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/math/BigInteger;ILjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/math/BigInteger;JII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;Ljava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CIILjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CLjava/math/MathContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(JJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(JIJI)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(JILjava/math/BigInteger;I)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(JJI)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/math/BigInteger;ILjava/math/BigInteger;I)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustScale(IJ)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "audit()Ljava/math/BigDecimal;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigDigitLength(Ljava/math/BigInteger;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigMultiplyPowerTen(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigMultiplyPowerTen(JI)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigMultiplyPowerTen(Ljava/math/BigInteger;I)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigTenToThe(I)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkScale(J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkScale(JJ)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkScale(Ljava/math/BigInteger;J)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkScaleNonZero(J)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "commonNeedIncrement(IIIZ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compactValFor(Ljava/math/BigInteger;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareMagnitude(Ljava/math/BigDecimal;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareMagnitudeNormalized(JIJI)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareMagnitudeNormalized(JILjava/math/BigInteger;I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareMagnitudeNormalized(Ljava/math/BigInteger;ILjava/math/BigInteger;I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createAndStripZerosToMatchScale(JIJ)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createAndStripZerosToMatchScale(Ljava/math/BigInteger;IJ)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divRemNegativeLong(JJ)[J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(JIJIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(JIJIJLjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(JILjava/math/BigInteger;III)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(JILjava/math/BigInteger;IJLjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/BigInteger;IJIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/BigInteger;IJIJLjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/BigInteger;ILjava/math/BigInteger;III)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/BigInteger;ILjava/math/BigInteger;IJLjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(JJI)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(JJIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(Ljava/math/BigInteger;JIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(Ljava/math/BigInteger;Ljava/math/BigInteger;III)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(Ljava/math/BigInteger;JI)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound(Ljava/math/BigInteger;Ljava/math/BigInteger;I)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRound128(JJJIIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRoundByTenPow(Ljava/math/BigInteger;II)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideSmallFastPath(JIJIJLjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRound(JILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRound(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRound(Ljava/math/BigInteger;ILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRound128(JJIILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expandBigIntegerTenPowers(I)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fractionOnly()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValueString(ILjava/lang/String;I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inflated()Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPowerOfTen()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "layoutChars(Z)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longCompareMagnitude(JJ)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longDigitLength(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longLongCompareMagnitude(JJJJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longMultiplyPowerTen(JI)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "make64(JJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchScale([Ljava/math/BigDecimal;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mulsub(JJJJJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(JJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(JJI)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(JLjava/math/BigInteger;I)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(Ljava/math/BigInteger;Ljava/math/BigInteger;I)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyAndRound(JJILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyAndRound(JLjava/math/BigInteger;ILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyAndRound(Ljava/math/BigInteger;Ljava/math/BigInteger;ILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyDivideAndRound(JJJIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needIncrement(JIIJJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needIncrement(JIILjava/math/MutableBigInteger;J)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needIncrement(Ljava/math/MutableBigInteger;IILjava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseExp([CII)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preAlign(Ljava/math/BigDecimal;Ljava/math/BigDecimal;JLjava/math/MathContext;)[Ljava/math/BigDecimal;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "precision(JJ)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "print(Ljava/lang/String;Ljava/math/BigDecimal;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "roundedTenPower(IIII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "saturateLong(J)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scaledTenPow(III)Ljava/math/BigDecimal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "square()Ljava/math/BigDecimal;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "squareRootResultAssertions(Ljava/math/BigDecimal;Ljava/math/MathContext;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "squareRootZeroResultAssertions(Ljava/math/BigDecimal;Ljava/math/MathContext;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripZerosToMatchScale(Ljava/math/BigInteger;JII)Ljava/math/BigDecimal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsignedLongCompare(JJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsignedLongCompareEq(JJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(D)Ljava/math/BigDecimal;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(J)Ljava/math/BigDecimal;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(JI)Ljava/math/BigDecimal;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(JII)Ljava/math/BigDecimal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/math/BigInteger;II)Ljava/math/BigDecimal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zeroValueOf(I)Ljava/math/BigDecimal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "abs()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abs(Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValueExact()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/math/BigDecimal;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;II)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;ILjava/math/RoundingMode;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigDecimal;Ljava/math/RoundingMode;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideAndRemainder(Ljava/math/BigDecimal;)[Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideAndRemainder(Ljava/math/BigDecimal;Ljava/math/MathContext;)[Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideToIntegralValue(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideToIntegralValue(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValueExact()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValueExact()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "movePointLeft(I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "movePointRight(I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiply(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiply(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate(Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pow(I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pow(ILjava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "precision()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainder(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainder(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "round(Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scale()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scaleByPowerOfTen(I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setScale(I)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setScale(II)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setScale(ILjava/math/RoundingMode;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValueExact()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqrt(Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stripTrailingZeros()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtract(Ljava/math/BigDecimal;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtract(Ljava/math/BigDecimal;Ljava/math/MathContext;)Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toBigIntegerExact()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEngineeringString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPlainString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ulp()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unscaledValue()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/BigInteger$UnsafeHolder;": {"fields": {"magOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signumOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putMag(Ljava/math/BigInteger;[I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putSign(Ljava/math/BigInteger;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BitSieve;": {"fields": {"smallSieve:Ljava/math/BitSieve;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bits:[J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bit(I)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sieveSearch(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sieveSingle(III)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unitIndex(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieve(Ljava/math/BigInteger;ILjava/util/Random;)Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/math/BigInteger;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BORINGSSL_DIV_OFFSET:I": {"value": "0x14", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BORINGSSL_DIV_THRESHOLD:I": {"value": "0x28", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BURNIKEL_ZIEGLER_OFFSET:I": {"value": "0x28", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BURNIKEL_ZIEGLER_THRESHOLD:I": {"value": "0x50", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_PRIME_CERTAINTY:I": {"value": "0x64", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KARATSUBA_SQUARE_THRESHOLD:I": {"value": "0x80", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KARATSUBA_THRESHOLD:I": {"value": "0x50", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG_TWO:D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONG_MASK:J": {"value": "0xffffffffL", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_CONSTANT:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_MAG_LENGTH:I": {"value": "0x4000000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MONTGOMERY_INTRINSIC_THRESHOLD:I": {"value": "0x200", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MULTIPLY_SQUARE_THRESHOLD:I": {"value": "0x14", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEGATIVE_ONE:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIME_SEARCH_BIT_LENGTH_LIMIT:I": {"value": "0x1dcd6500", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SCHOENHAGE_BASE_CONVERSION_THRESHOLD:I": {"value": "0x14", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMALL_PRIME_PRODUCT:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMALL_PRIME_THRESHOLD:I": {"value": "0x5f", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TEN:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TOOM_COOK_SQUARE_THRESHOLD:I": {"value": "0xd8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TOOM_COOK_THRESHOLD:I": {"value": "0xf0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TWO:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ZERO:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bitsPerDigit:[J": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bnExpModThreshTable:[I": {"value": "null", "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsPerInt:[I": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsPerLong:[I": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intRadix:[I": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "logCache:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longRadix:[Ljava/math/BigInteger;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "negConst:[Ljava/math/BigInteger;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "posConst:[Ljava/math/BigInteger;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "powerCache:[[Ljava/math/BigInteger;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x730360e056c404e3L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zeros:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitCountPlusOne:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitLengthPlusOne:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstNonzeroIntNumPlusTwo:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowestSetBitPlusTwo:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mag:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signum:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IILjava/util/Random;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/Random;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add([IJ)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add([I[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addOne([IIII)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bigEndInts2NewBN([IZ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitLength([II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitLengthForInt(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bn2BigEndInts(J)[I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkRange()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "destructiveMulAdd([III)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRemainderBurnikelZiegler(Ljava/math/BigInteger;)[Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRemainderKnuth(Ljava/math/BigInteger;)[Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideBurnikelZiegler(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideKnuth(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exactDivideBy3()Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstNonzeroIntNum()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLower(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPrimeSearchLen(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRadixConversionCache(II)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getToomSlice(IIII)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUpper(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMontgomeryMultiply([I[I[IIJ[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMontgomeryMultiplyChecks([I[I[II[I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMontgomerySquare([I[IIJ[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMulAdd([I[IIII)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMulAddCheck([I[IIII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implMultiplyToLen([II[II[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSquareToLen([II[II)[I": {"other": [".method", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSquareToLenChecks([II[II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intArrayCmpToLen([I[II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intLength()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jacobiSymbol(ILjava/math/BigInteger;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "largePrime(IILjava/util/Random;)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftShift([III)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lucasLehmerSequence(ILjava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "magSerializedForm()[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makePositive([BII)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makePositive([I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "materialize([II)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mod2(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "modPow2(Ljava/math/BigInteger;I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "montReduce([I[III)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "montgomeryMultiply([I[I[IIJ[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "montgomerySquare([I[IIJ[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mulAdd([I[IIII)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(Ljava/math/BigInteger;Z)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyByInt([III)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyKaratsuba(Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyToLen([II[II[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyToLenCheck([II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiplyToomCook3(Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oddModPow(Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseInt([CII)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "passesLucasLehmer()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "passesMillerRabin(ILjava/util/Random;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveLeftShift([III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveRightShift([III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "probablePrime(ILjava/util/Random;)Ljava/math/BigInteger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "randomBits(ILjava/util/Random;)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "remainderBurnikelZiegler(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remainderKnuth(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reportOverflow()V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverse([I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shiftLeft([II)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shiftRightImpl(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signBit()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signInt()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "smallPrime(IILjava/util/Random;)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "smallToString(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "square()Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "square(Z)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "squareKaratsuba()Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "squareToLen([II[I)[I": {"other": [".method", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "squareToomCook3()Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripLeadingZeroBytes([BII)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripLeadingZeroInts([I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subN([I[II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtract(J[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtract([IJ)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtract([I[I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString(Ljava/math/BigInteger;Ljava/lang/StringBuilder;II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedStripLeadingZeroInts([I)[I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(J)Ljava/math/BigInteger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf([I)Ljava/math/BigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "abs()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(J)Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "and(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andNot(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bitCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bitLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "byteValueExact()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearBit(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareMagnitude(J)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareMagnitude(Ljava/math/BigInteger;)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/math/BigInteger;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divide(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "divideAndRemainder(Ljava/math/BigInteger;)[Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flipBit(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "gcd(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLowestSetBit()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValueExact()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isProbablePrime(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "javaIncrement([I)[I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValueExact()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mod(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "modInverse(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "modPow(Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multiply(J)Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextProbablePrime()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "not()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pow(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "primeToCertainty(ILjava/util/Random;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remainder(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBit(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shiftLeft(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shiftRight(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shortValueExact()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signum()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqrt()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqrtAndRemainder()[Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtract(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "testBit(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toByteArray()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "xor(Ljava/math/BigInteger;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/MathContext;": {"fields": {"DECIMAL128:Ljava/math/MathContext;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECIMAL32:Ljava/math/MathContext;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECIMAL64:Ljava/math/MathContext;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFAULT_DIGITS:I": {"value": "0x9", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_ROUNDINGMODE:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_DIGITS:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNLIMITED:Ljava/math/MathContext;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x4d6f25c81f7601ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "precision:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "roundingMode:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/math/RoundingMode;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrecision()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoundingMode()Ljava/math/RoundingMode;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/MutableBigInteger;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KNUTH_POW2_THRESH_LEN:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KNUTH_POW2_THRESH_ZEROS:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE:Ljava/math/MutableBigInteger;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intLen:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:[I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/MutableBigInteger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "binaryGCD(Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "binaryGcd(II)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareShifted(Ljava/math/MutableBigInteger;I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyAndShift([III[III)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "difference(Ljava/math/MutableBigInteger;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divWord(JI)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divadd([I[II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divaddLong(II[II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide2n1n(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide3n2n(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideLongMagnitude(JLjava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideMagnitude(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;Z)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureCapacity(I)V": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fixup(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;I)Ljava/math/MutableBigInteger;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBlock(III)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(I)I": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(I)J": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLower(I)Ljava/math/BigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLowestSetBit()I": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMagnitudeArray()[I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inverseMod32(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inverseMod64(J)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keepLower(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "modInverse(Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "modInverseBP2(Ljava/math/MutableBigInteger;I)Ljava/math/MutableBigInteger;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mulsub([I[IIII)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mulsubBorrow([I[IIII)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mulsubLong([IIIII)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ones(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveLeftShift(I)V": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveRightShift(I)V": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toLong()J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsignedLongCompare(JJ)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addDisjoint(Ljava/math/MutableBigInteger;I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addLower(Ljava/math/MutableBigInteger;I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addShifted(Ljava/math/MutableBigInteger;I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitLength()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/math/MutableBigInteger;)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareHalf(Ljava/math/MutableBigInteger;)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyValue(Ljava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyValue([I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(JLjava/math/MutableBigInteger;)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divide(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;Z)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideAndRemainderBurnikelZiegler(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideKnuth(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideKnuth(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;Z)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "divideOneWord(ILjava/math/MutableBigInteger;)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "euclidModInverse(I)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hybridGCD(Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEven()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNormal()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOdd()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOne()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isZero()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftShift(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "modInverseMP2(I)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mul(ILjava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiply(Ljava/math/MutableBigInteger;Ljava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mutableModInverse(Ljava/math/MutableBigInteger;)Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rightShift(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "safeLeftShift(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "safeRightShift(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInt(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setValue([II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sqrt()Ljava/math/MutableBigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtract(Ljava/math/MutableBigInteger;)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBigDecimal(II)Ljava/math/BigDecimal;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBigInteger()Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBigInteger(I)Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toCompactValue(I)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toIntArray()[I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/RoundingMode;": {"fields": {"$VALUES:[Ljava/math/RoundingMode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CEILING:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DOWN:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FLOOR:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HALF_DOWN:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HALF_EVEN:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HALF_UP:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNNECESSARY:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UP:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "oldMode:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(I)Ljava/math/RoundingMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/math/RoundingMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/math/RoundingMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/math/SignedMutableBigInteger;": {"fields": {"sign:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/MutableBigInteger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signedAdd(Ljava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signedAdd(Ljava/math/SignedMutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signedSubtract(Ljava/math/MutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signedSubtract(Ljava/math/SignedMutableBigInteger;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/AbstractPlainDatagramSocketImpl;": {"fields": {"connectDisabled:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "os:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connected:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectedAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectedPort:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trafficClass:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNIFirstAddress(I)Ljava/net/InetAddress;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(ILjava/net/InetAddress;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind0(ILjava/net/InetAddress;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect0(Ljava/net/InetAddress;I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dataAvailable()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "datagramSocketClose()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "datagramSocketCreate()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disconnect()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disconnect0(I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTTL()B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "join(Ljava/net/InetAddress;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "joinGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leave(Ljava/net/InetAddress;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leave(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leaveGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nativeConnectDisabled()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peek(Ljava/net/InetAddress;)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekData(Ljava/net/DatagramPacket;)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive0(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTTL(B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeToLive(I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socketGetOption(I)Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption(ILjava/lang/Object;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/AbstractPlainSocketImpl;": {"fields": {"SHUT_RD:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHUT_WR:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECTION_NOT_RESET:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECTION_RESET:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECTION_RESET_PENDING:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closePending:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdLock:Ljava/lang/Object;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdUseCount:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resetLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resetState:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shut_rd:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shut_wr:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketInputStream:Ljava/net/SocketInputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketOutputStream:Ljava/net/SocketOutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stream:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectToAddress(Ljava/net/InetAddress;II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketPreClose()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/net/SocketImpl;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireFD()Ljava/io/FileDescriptor;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/InetAddress;I)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/lang/String;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create(Z)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doConnect(Ljava/net/InetAddress;II)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeout()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClosedOrPending()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConnectionReset()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConnectionResetPending()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listen(I)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "releaseFD()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendUrgentData(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAddress(Ljava/net/InetAddress;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectionReset()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectionResetPending()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInputStream(Ljava/net/SocketInputStream;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLocalPort(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPort(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdownInput()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socketAccept(Ljava/net/SocketImpl;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketAvailable()I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketBind(Ljava/net/InetAddress;I)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketClose()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketClose0(Z)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketConnect(Ljava/net/InetAddress;II)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketCreate(Z)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketGetOption(I)Ljava/lang/Object;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketListen(I)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSendUrgentData(I)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption(ILjava/lang/Object;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketShutdown(I)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportsUrgentData()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Authenticator$RequestorType;": {"fields": {"$VALUES:[Ljava/net/Authenticator$RequestorType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROXY:Ljava/net/Authenticator$RequestorType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SERVER:Ljava/net/Authenticator$RequestorType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/net/Authenticator$RequestorType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/net/Authenticator$RequestorType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Authenticator;": {"fields": {"theAuthenticator:Ljava/net/Authenticator;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "requestingAuthType:Ljava/net/Authenticator$RequestorType;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingHost:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingPort:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingPrompt:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingProtocol:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingScheme:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingSite:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requestingURL:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requestPasswordAuthentication(Ljava/lang/String;Ljava/net/InetAddress;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/net/PasswordAuthentication;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requestPasswordAuthentication(Ljava/lang/String;Ljava/net/InetAddress;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/net/URL;Ljava/net/Authenticator$RequestorType;)Ljava/net/PasswordAuthentication;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requestPasswordAuthentication(Ljava/net/InetAddress;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/net/PasswordAuthentication;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDefault(Ljava/net/Authenticator;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPasswordAuthentication()Ljava/net/PasswordAuthentication;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingHost()Ljava/lang/String;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingPort()I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingPrompt()Ljava/lang/String;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingProtocol()Ljava/lang/String;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingScheme()Ljava/lang/String;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingSite()Ljava/net/InetAddress;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestingURL()Ljava/net/URL;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestorType()Ljava/net/Authenticator$RequestorType;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/BindException;": {"fields": {"serialVersionUID:J": {"value": "-0x5280e73f8c4accc7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/CacheRequest;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abort()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBody()Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CacheResponse;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBody()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaders()Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ConnectException;": {"fields": {"serialVersionUID:J": {"value": "0x352be1e2a8f72fbfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/ContentHandler;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent(Ljava/net/URLConnection;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent(Ljava/net/URLConnection;[Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ContentHandlerFactory;": {"fields": {}, "methods": {"createContentHandler(Ljava/lang/String;)Ljava/net/ContentHandler;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookieHandler;": {"fields": {"cookieHandler:Ljava/net/CookieHandler;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljava/net/CookieHandler;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljava/net/CookieHandler;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/net/URI;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/net/URI;Ljava/util/Map;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookieManager$CookiePathComparator;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/net/HttpCookie;Ljava/net/HttpCookie;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/CookieManager;": {"fields": {"cookieJar:Ljava/net/CookieStore;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "policyCallback:Ljava/net/CookiePolicy;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smnormalizePath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/CookieStore;Ljava/net/CookiePolicy;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInPortList(Ljava/lang/String;I)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizePath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pathMatches(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shouldAcceptInternal(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sortByPath(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/net/URI;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCookieStore()Ljava/net/CookieStore;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/net/URI;Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCookiePolicy(Ljava/net/CookiePolicy;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookiePolicy$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldAccept(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookiePolicy$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldAccept(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookiePolicy$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldAccept(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookiePolicy;": {"fields": {"ACCEPT_ALL:Ljava/net/CookiePolicy;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ACCEPT_NONE:Ljava/net/CookiePolicy;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ACCEPT_ORIGINAL_SERVER:Ljava/net/CookiePolicy;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldAccept(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/CookieStore;": {"fields": {}, "methods": {"add(Ljava/net/URI;Ljava/net/HttpCookie;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/net/URI;)Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCookies()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURIs()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/DatagramPacket;": {"fields": {"address:Ljava/net/InetAddress;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bufLength:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BIILjava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BIILjava/net/SocketAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BILjava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BILjava/net/SocketAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()Ljava/net/InetAddress;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getData()[B": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLength()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAddress(Ljava/net/InetAddress;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setData([B)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setData([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLength(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPort(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceivedLength(I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSocketAddress(Ljava/net/SocketAddress;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/DatagramSocket$1;": {"fields": {"this$0:Ljava/net/DatagramSocket;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/DatagramSocket;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/DatagramSocket;": {"fields": {"ST_CONNECTED:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_CONNECTED_NO_IMPL:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_NOT_CONNECTED:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factory:Ljava/net/DatagramSocketImplFactory;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implClass:Ljava/lang/Class;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "options:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "optionsSet:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bound:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bytesLeftToFilter:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connectState:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connectedAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connectedPort:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "created:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitFilter:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "impl:Ljava/net/DatagramSocketImpl;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "oldImpl:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pendingConnectException:Ljava/net/SocketException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/net/InetAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/DatagramSocketImpl;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/SocketAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkFiltering(Ljava/net/DatagramPacket;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOldImpl()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connectInternal(Ljava/net/InetAddress;I)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDatagramSocketImplFactory(Ljava/net/DatagramSocketImplFactory;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAddress(Ljava/net/InetAddress;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createImpl()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disconnect()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBroadcast()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getImpl()Ljava/net/DatagramSocketImpl;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSendBufferSize()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrafficClass()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/net/DatagramPacket;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBroadcast(Z)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/DatagramSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSendBufferSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTrafficClass(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/DatagramSocketImpl;": {"fields": {"dgSocketOptions:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mcSocketOptions:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localPort:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket:Ljava/net/DatagramSocket;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(ILjava/net/InetAddress;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dataAvailable()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disconnect()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDatagramSocket()Ljava/net/DatagramSocket;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFileDescriptor()Ljava/io/FileDescriptor;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTTL()B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joinGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leave(Ljava/net/InetAddress;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leaveGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/net/InetAddress;)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekData(Ljava/net/DatagramPacket;)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDatagramSocket(Ljava/net/DatagramSocket;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTTL(B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeToLive(I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/DatagramSocketImplFactory;": {"fields": {}, "methods": {"createDatagramSocketImpl()Ljava/net/DatagramSocketImpl;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/DefaultDatagramSocketImplFactory;": {"fields": {"prefixImplClass:Ljava/lang/Class;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createDatagramSocketImpl(Z)Ljava/net/DatagramSocketImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/DefaultInterface;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefault()Ljava/net/NetworkInterface;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/FactoryURLClassLoader;": {"fields": {}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;Ljava/lang/ClassLoader;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadClass(Ljava/lang/String;Z)Ljava/lang/Class;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/FileNameMap;": {"fields": {}, "methods": {"getContentTypeFor(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/HttpCookie$10;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$11;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$4;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$5;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$6;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$7;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$8;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$9;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie$CookieAttributeAssignor;": {"fields": {}, "methods": {"assign(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/HttpCookie;": {"fields": {"GMT:Ljava/util/TimeZone;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_AGE_UNSPECIFIED:J": {"value": "-0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESERVED_NAMES:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SET_COOKIE:Ljava/lang/String;": {"value": "\"set-cookie:\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SET_COOKIE2:Ljava/lang/String;": {"value": "\"set-cookie2:\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assignors:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "tspecials:Ljava/lang/String;": {"value": "\",;= \\t\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "comment:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "commentURL:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "domain:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "header:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "httpOnly:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "maxAge:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "portlist:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "secure:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "toDiscard:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "version:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "whenCreated:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetwhenCreated(Ljava/net/HttpCookie;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "assignAttribute(Ljava/net/HttpCookie;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "domainMatches(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equalsIgnoreCase(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "guessCookieVersion(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "header()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFullyQualifiedDomainName(Ljava/lang/String;I)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isToken(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Z)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseInternal(Ljava/lang/String;Z)Ljava/net/HttpCookie;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "splitMultiCookies(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startsWithIgnoreCase(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stripOffSurroundingQuote(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toNetscapeHeaderString()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toRFC2965HeaderString()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComment()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCommentURL()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDiscard()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDomain()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxAge()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPortlist()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecure()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasExpired()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHttpOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setComment(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCommentURL(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDiscard(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDomain(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHttpOnly(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxAge(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPath(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPortlist(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSecure(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setVersion(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/HttpRetryException;": {"fields": {"serialVersionUID:J": {"value": "-0x7f7b4e9993d01e55L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "location:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "responseCode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocation()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReason()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "responseCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/HttpURLConnection;": {"fields": {"DEFAULT_CHUNK_SIZE:I": {"value": "0x1000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HTTP_ACCEPTED:I": {"value": "0xca", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_BAD_GATEWAY:I": {"value": "0x1f6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_BAD_METHOD:I": {"value": "0x195", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_BAD_REQUEST:I": {"value": "0x190", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_CLIENT_TIMEOUT:I": {"value": "0x198", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_CONFLICT:I": {"value": "0x199", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_CREATED:I": {"value": "0xc9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_ENTITY_TOO_LARGE:I": {"value": "0x19d", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_FORBIDDEN:I": {"value": "0x193", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_GATEWAY_TIMEOUT:I": {"value": "0x1f8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_GONE:I": {"value": "0x19a", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_INTERNAL_ERROR:I": {"value": "0x1f4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_LENGTH_REQUIRED:I": {"value": "0x19b", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_MOVED_PERM:I": {"value": "0x12d", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_MOVED_TEMP:I": {"value": "0x12e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_MULT_CHOICE:I": {"value": "0x12c", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NOT_ACCEPTABLE:I": {"value": "0x196", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NOT_AUTHORITATIVE:I": {"value": "0xcb", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NOT_FOUND:I": {"value": "0x194", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NOT_IMPLEMENTED:I": {"value": "0x1f5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NOT_MODIFIED:I": {"value": "0x130", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_NO_CONTENT:I": {"value": "0xcc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_OK:I": {"value": "0xc8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_PARTIAL:I": {"value": "0xce", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_PAYMENT_REQUIRED:I": {"value": "0x192", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_PRECON_FAILED:I": {"value": "0x19c", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_PROXY_AUTH:I": {"value": "0x197", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_REQ_TOO_LONG:I": {"value": "0x19e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_RESET:I": {"value": "0xcd", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_SEE_OTHER:I": {"value": "0x12f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_SERVER_ERROR:I": {"value": "0x1f4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_UNAUTHORIZED:I": {"value": "0x191", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_UNAVAILABLE:I": {"value": "0x1f7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_UNSUPPORTED_TYPE:I": {"value": "0x19f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_USE_PROXY:I": {"value": "0x131", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP_VERSION:I": {"value": "0x1f9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "followRedirects:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "methods:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chunkLength:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fixedContentLength:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fixedContentLengthLong:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instanceFollowRedirects:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "method:Ljava/lang/String;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "responseCode:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "responseMessage:Ljava/lang/String;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFollowRedirects()Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFollowRedirects(Z)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disconnect()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldDate(Ljava/lang/String;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldKey(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstanceFollowRedirects()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestMethod()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResponseCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResponseMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setChunkedStreamingMode(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFixedLengthStreamingMode(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFixedLengthStreamingMode(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInstanceFollowRedirects(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRequestMethod(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "usingProxy()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/IDN;": {"fields": {"ALLOW_UNASSIGNED:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "USE_STD3_ASCII_RULES:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "convertFullStop(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLabelSeperator(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toASCII(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toASCII(Ljava/lang/String;I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnicode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnicode(Ljava/lang/String;I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/InMemoryCookieStore;": {"fields": {"applyMCompatibility:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uriIndex:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addIndex(Ljava/util/Map;Ljava/lang/Object;Ljava/net/HttpCookie;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEffectiveURI(Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInternal1(Ljava/util/List;Ljava/util/Map;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInternal2(Ljava/util/List;Ljava/util/Map;Ljava/lang/Comparable;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "netscapeDomainMatches(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/net/URI;Ljava/net/HttpCookie;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/net/URI;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCookies()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURIs()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/net/URI;Ljava/net/HttpCookie;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Inet4Address;": {"fields": {"ALL:Ljava/net/InetAddress;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": "test-api"}, "ANY:Ljava/net/InetAddress;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": "test-api"}, "INADDRSZ:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOOPBACK:Ljava/net/InetAddress;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x2d9b57af9fe3ebdbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;[B)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numericToTextFormat([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostAddress()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnyLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLinkLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoopbackAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCGlobal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCLinkLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCNodeLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCOrgLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCSiteLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMulticastAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSiteLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Inet6Address$Inet6AddressHolder-IA;": {"fields": {}, "methods": {}}, "Ljava/net/Inet6Address$Inet6AddressHolder;": {"fields": {"ipaddress:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "scope_id:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "scope_id_set:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "scope_ifname:Ljava/net/NetworkInterface;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "scope_ifname_set:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/net/Inet6Address;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/Inet6Address;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/Inet6Address;Ljava/net/Inet6Address$Inet6AddressHolder-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/Inet6Address;[BIZLjava/net/NetworkInterface;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/Inet6Address;[BIZLjava/net/NetworkInterface;ZLjava/net/Inet6Address$Inet6AddressHolder-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init([BI)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init([BLjava/net/NetworkInterface;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAnyLocalAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isIPv4CompatibleAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLinkLocalAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLoopbackAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMCGlobal()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMCLinkLocal()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMCNodeLocal()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMCOrgLocal()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMCSiteLocal()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMulticastAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSiteLocalAddress()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setAddr([B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/Inet6Address;": {"fields": {"ANY:Ljava/net/InetAddress;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": "test-api"}, "FIELDS_OFFSET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INADDRSZ:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INT16SZ:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOOPBACK:Ljava/net/InetAddress;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "UNSAFE:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x5f7c2081522c8021L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "holder6:Ljava/net/Inet6Address$Inet6AddressHolder;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smderiveNumericScope([BLjava/net/NetworkInterface;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/lang/String;[B)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;[BI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;[BLjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;[BLjava/net/NetworkInterface;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deriveNumericScope(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deriveNumericScope([BLjava/net/NetworkInterface;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getByAddress(Ljava/lang/String;[BI)Ljava/net/Inet6Address;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByAddress(Ljava/lang/String;[BLjava/net/NetworkInterface;)Ljava/net/Inet6Address;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initif(Ljava/lang/String;[BLjava/net/NetworkInterface;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initstr(Ljava/lang/String;[BLjava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDifferentLocalAddressType([B[B)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLinkLocalAddress([B)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSiteLocalAddress([B)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numericToTextFormat([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostAddress()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScopeId()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScopedInterface()Ljava/net/NetworkInterface;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnyLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIPv4CompatibleAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLinkLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoopbackAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCGlobal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCLinkLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCNodeLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCOrgLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCSiteLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMulticastAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSiteLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Inet6AddressImpl;": {"fields": {"addressCache:Ljava/net/AddressCache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "anyLocalAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopbackAddresses:[Ljava/net/InetAddress;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHostByAddr0([B)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupHostByName(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tcpEcho(Ljava/net/InetAddress;ILjava/net/InetAddress;I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anyLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clearAddressCache()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHostByAddr([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "icmpEcho(Ljava/net/InetAddress;ILjava/net/InetAddress;I)Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReachable(Ljava/net/InetAddress;ILjava/net/NetworkInterface;I)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupAllHostAddr(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loopbackAddresses()[Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/InetAddress$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHostByAddr([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupAllHostAddr(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/InetAddress$InetAddressHolder;": {"fields": {"address:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "family:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "hostName:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "originalHostName:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAddress()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFamily()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHostName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOriginalHostName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(Ljava/lang/String;I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/InetAddress;": {"fields": {"BOOT_CLASSLOADER:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NETID_UNSET:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "impl:Ljava/net/InetAddressImpl;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nameService:Lsun/net/spi/nameservice/NameService;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2d9b57af9fe3ebdbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "canonicalHostName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "holder:Ljava/net/InetAddress$InetAddressHolder;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "anyLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearDnsCache()V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getAllByName(Ljava/lang/String;)[Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAllByNameOnNet(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getByAddress(Ljava/lang/String;[B)Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByAddress(Ljava/lang/String;[BI)Ljava/net/InetAddress;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getByAddress([B)Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByName(Ljava/lang/String;)Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByNameOnNet(Ljava/lang/String;I)Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getHostFromNameService(Ljava/net/InetAddress;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocalHost()Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoopbackAddress()Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNumeric(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": "test-api"}, "parseNumericAddress(Ljava/lang/String;)Ljava/net/InetAddress;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readObjectNoData(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCanonicalHostName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostAddress()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "holder()Ljava/net/InetAddress$InetAddressHolder;": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isAnyLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLinkLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoopbackAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCGlobal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCLinkLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCNodeLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCOrgLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMCSiteLocal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMulticastAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReachable(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReachable(Ljava/net/NetworkInterface;II)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReachableByICMP(I)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSiteLocalAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/InetAddressContainer;": {"fields": {"addr:Ljava/net/InetAddress;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/InetAddressImpl;": {"fields": {}, "methods": {"anyLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearAddressCache()V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHostByAddr([B)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReachable(Ljava/net/InetAddress;ILjava/net/NetworkInterface;I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupAllHostAddr(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loopbackAddresses()[Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/InetSocketAddress$InetSocketAddressHolder-IA;": {"fields": {}, "methods": {}}, "Ljava/net/InetSocketAddress$InetSocketAddressHolder;": {"fields": {"addr:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hostname:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetaddr(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Ljava/net/InetAddress;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgethostname(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetport(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetAddress(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Ljava/net/InetAddress;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetHostName(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetHostString(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetPort(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$misUnresolved(Ljava/net/InetSocketAddress$InetSocketAddressHolder;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/net/InetAddress;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/net/InetAddress;ILjava/net/InetSocketAddress$InetSocketAddressHolder-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAddress()Ljava/net/InetAddress;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHostName()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHostString()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPort()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUnresolved()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/InetSocketAddress;": {"fields": {"FIELDS_OFFSET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSAFE:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x467194616ff9aa45L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "holder:Ljava/net/InetSocketAddress$InetSocketAddressHolder;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkHost(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPort(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createUnresolved(Ljava/lang/String;I)Ljava/net/InetSocketAddress;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readObjectNoData()V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()Ljava/net/InetAddress;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnresolved()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/InterfaceAddress;": {"fields": {"address:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "broadcast:Ljava/net/Inet4Address;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskLength:S": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/net/InetAddress;Ljava/net/Inet4Address;Ljava/net/InetAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "countPrefixLength(Ljava/net/InetAddress;)S": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBroadcast()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNetworkPrefixLength()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/JarURLConnection;": {"fields": {"entryName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarFileURL:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarFileURLConnection:Ljava/net/URLConnection;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/net/URL;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseSpecs(Ljava/net/URL;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntryName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarEntry()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarFile()Ljava/util/jar/JarFile;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarFileURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMainAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/MalformedURLException;": {"fields": {"serialVersionUID:J": {"value": "-0x289644872212e7aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/MulticastSocket;": {"fields": {"options:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "optionsSet:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "infAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "infLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interfaceSet:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ttlLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/SocketAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInterface()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoopbackMode()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNetworkInterface()Ljava/net/NetworkInterface;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTTL()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joinGroup(Ljava/net/InetAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joinGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leaveGroup(Ljava/net/InetAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leaveGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/net/DatagramPacket;B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInterface(Ljava/net/InetAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoopbackMode(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNetworkInterface(Ljava/net/NetworkInterface;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTTL(B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeToLive(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/NetPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/NetworkInterface$1checkedAddresses;": {"fields": {"count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "i:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "local_addrs:[Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/net/NetworkInterface;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/NetworkInterface;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/NetworkInterface;": {"fields": {"DEFAULT_MAC_ADDRESS:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RETURN_NULL_HARDWARE_ADDRESS:J": {"value": "0xa24df7cL", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultIndex:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultInterface:Ljava/net/NetworkInterface;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addrs:[Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bindings:[Ljava/net/InterfaceAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "childs:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "displayName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hardwareAddr:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/net/NetworkInterface;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "virtual:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetaddrs(Ljava/net/NetworkInterface;)[Ljava/net/InetAddress;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;I[Ljava/net/InetAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAll()[Ljava/net/NetworkInterface;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getByIndex(I)Ljava/net/NetworkInterface;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByInetAddress(Ljava/net/InetAddress;)Ljava/net/NetworkInterface;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByName(Ljava/lang/String;)Ljava/net/NetworkInterface;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljava/net/NetworkInterface;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFlags()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNetworkInterfaces()Ljava/util/Enumeration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHardwareAddress()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInetAddresses()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInterfaceAddresses()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMTU()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/net/NetworkInterface;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubInterfaces()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoopback()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPointToPoint()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUp()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isVirtual()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMulticast()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/NoRouteToHostException;": {"fields": {"serialVersionUID:J": {"value": "-0x1a55747c3828c11eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Parts;": {"fields": {"path:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "query:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ref:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPath()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getQuery()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRef()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/PasswordAuthentication;": {"fields": {"password:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()[C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/PlainDatagramSocketImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRecv(Ljava/net/DatagramPacket;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeGroupReq(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)Landroid/system/StructGroupReq;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind0(ILjava/net/InetAddress;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect0(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "datagramSocketClose()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "datagramSocketCreate()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disconnect0(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTTL()B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leave(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peek(Ljava/net/InetAddress;)I": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekData(Ljava/net/DatagramPacket;)I": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive0(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTTL(B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeToLive(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socketGetOption(I)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption(ILjava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption0(ILjava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/PlainSocketImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getMarkerFD()Ljava/io/FileDescriptor;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socketAccept(Ljava/net/SocketImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketAvailable()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketBind(Ljava/net/InetAddress;I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketClose0(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketConnect(Ljava/net/InetAddress;II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketCreate(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketGetOption(I)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketListen(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSendUrgentData(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption(ILjava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketSetOption0(ILjava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketShutdown(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/PortUnreachableException;": {"fields": {"serialVersionUID:J": {"value": "0x7570fd1b086d9bbbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/ProtocolException;": {"fields": {"serialVersionUID:J": {"value": "-0x54a20b74e2cecb70L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ProtocolFamily;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Proxy$Type;": {"fields": {"$VALUES:[Ljava/net/Proxy$Type;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIRECT:Ljava/net/Proxy$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HTTP:Ljava/net/Proxy$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SOCKS:Ljava/net/Proxy$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/net/Proxy$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/net/Proxy$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Proxy;": {"fields": {"NO_PROXY:Ljava/net/Proxy;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sa:Ljava/net/SocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/net/Proxy$Type;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/net/Proxy$Type;Ljava/net/SocketAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "address()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/net/Proxy$Type;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ProxySelector;": {"fields": {"theProxySelector:Ljava/net/ProxySelector;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljava/net/ProxySelector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljava/net/ProxySelector;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connectFailed(Ljava/net/URI;Ljava/net/SocketAddress;Ljava/io/IOException;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(Ljava/net/URI;)Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ResponseCache;": {"fields": {"theResponseCache:Ljava/net/ResponseCache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljava/net/ResponseCache;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljava/net/ResponseCache;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/net/URI;Ljava/lang/String;Ljava/util/Map;)Ljava/net/CacheResponse;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/net/URI;Ljava/net/URLConnection;)Ljava/net/CacheRequest;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SecureCacheResponse;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCipherSuite()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalCertificateChain()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerCertificateChain()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/ServerSocket$1;": {"fields": {"this$0:Ljava/net/ServerSocket;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/ServerSocket;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/ServerSocket;": {"fields": {"factory:Ljava/net/SocketImplFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "options:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "optionsSet:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bound:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "created:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "impl:Ljava/net/SocketImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oldImpl:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetimpl(Ljava/net/ServerSocket;)Ljava/net/SocketImpl;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IILjava/net/InetAddress;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/SocketImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOldImpl()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setImpl()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSocketFactory(Ljava/net/SocketImplFactory;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createImpl()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChannel()Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImpl()Ljava/net/SocketImpl;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implAccept(Ljava/net/Socket;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBound()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCreated()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPerformancePreferences(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Socket$1;": {"fields": {"this$0:Ljava/net/Socket;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/Socket;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Socket$2;": {"fields": {"this$0:Ljava/net/Socket;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/Socket;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Socket$3;": {"fields": {"this$0:Ljava/net/Socket;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/Socket;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketAddress;": {"fields": {"serialVersionUID:J": {"value": "0x4861f662f4979d6aL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/Socket;": {"fields": {"factory:Ljava/net/SocketImplFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "options:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "optionsSet:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bound:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connected:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "created:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "impl:Ljava/net/SocketImpl;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "oldImpl:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shutIn:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shutOut:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;ILjava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;ILjava/net/InetAddress;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/Proxy;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/SocketImpl;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/net/InetAddress;ILjava/net/SocketAddress;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkAddress(Ljava/net/InetAddress;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOldImpl()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission(Ljava/net/SocketImpl;)Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nonNullAddress(Ljava/net/InetAddress;)[Ljava/net/InetAddress;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSocketImplFactory(Ljava/net/SocketImplFactory;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createImpl(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChannel()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getImpl()Ljava/net/SocketImpl;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeepAlive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOOBInline()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteSocketAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSendBufferSize()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoLinger()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTcpNoDelay()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrafficClass()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInputShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOutputShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "postAccept()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sendUrgentData(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBound()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setConnected()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCreated()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setImpl()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setKeepAlive(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOOBInline(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPerformancePreferences(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSendBufferSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoLinger(ZI)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTcpNoDelay(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTrafficClass(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketException;": {"fields": {"serialVersionUID:J": {"value": "-0x5260763abee0a196L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/SocketImpl;": {"fields": {"serverSocketOptions:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketOptions:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:Ljava/net/InetAddress;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localport:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "port:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serverSocket:Ljava/net/ServerSocket;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "socket:Ljava/net/Socket;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/net/SocketImpl;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/InetAddress;I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/lang/String;I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create(Z)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getFileDescriptor()Ljava/io/FileDescriptor;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerSocket()Ljava/net/ServerSocket;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSocket()Ljava/net/Socket;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "listen(I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sendUrgentData(I)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPerformancePreferences(III)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setServerSocket(Ljava/net/ServerSocket;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSocket(Ljava/net/Socket;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shutdownInput()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsUrgentData()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketImplFactory;": {"fields": {}, "methods": {"createSocketImpl()Ljava/net/SocketImpl;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketInputStream;": {"fields": {"closing:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eof:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "impl:Ljava/net/AbstractPlainSocketImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "temp:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/AbstractPlainSocketImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketRead(Ljava/io/FileDescriptor;[BIII)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketRead0(Ljava/io/FileDescriptor;[BIII)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BIII)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEOF(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketOption;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketOptions;": {"fields": {"IP_MULTICAST_IF:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_MULTICAST_IF2:I": {"value": "0x1f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_MULTICAST_LOOP:I": {"value": "0x12", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_TOS:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_BINDADDR:I": {"value": "0xf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_BROADCAST:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_KEEPALIVE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_LINGER:I": {"value": "0x80", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_OOBINLINE:I": {"value": "0x1003", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_RCVBUF:I": {"value": "0x1002", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_REUSEADDR:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_REUSEPORT:I": {"value": "0xe", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_SNDBUF:I": {"value": "0x1001", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_TIMEOUT:I": {"value": "0x1006", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TCP_NODELAY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getOption(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(ILjava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketOutputStream;": {"fields": {"closing:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "impl:Ljava/net/AbstractPlainSocketImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "temp:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/AbstractPlainSocketImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketWrite([BII)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketWrite0(Ljava/io/FileDescriptor;[BII)V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocketSecrets;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/lang/Object;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/DatagramSocket;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/lang/Object;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/DatagramSocket;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/SocketTimeoutException;": {"fields": {"serialVersionUID:J": {"value": "-0x7ac5a1b5018c9cacL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/SocksConsts;": {"fields": {"ADDR_TYPE_NOT_SUP:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIND:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CMD_NOT_SUPPORTED:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONN_REFUSED:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_PORT:I": {"value": "0x438", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOMAIN_NAME:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GENERAL_FAILURE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GSSAPI:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HOST_UNREACHABLE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IPV4:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IPV6:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NET_UNREACHABLE:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_ALLOWED:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_AUTH:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_METHODS:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROTO_VERS:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROTO_VERS4:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REQUEST_OK:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TTL_EXPIRED:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UDP_ASSOC:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "USER_PASSW:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {}}, "Ljava/net/SocksSocketImpl$1;": {"fields": {"this$0:Ljava/net/SocksSocketImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$host:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$port:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$timeout:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/SocksSocketImpl;Ljava/lang/String;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/SocksSocketImpl$2;": {"fields": {"this$0:Ljava/net/SocksSocketImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$addr:Ljava/net/InetAddress;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/SocksSocketImpl;Ljava/net/InetAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/PasswordAuthentication;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/SocksSocketImpl;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applicationSetProxy:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmdIn:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmdOut:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmdsock:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "external_address:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "server:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverPort:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useV4:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetserver(Ljava/net/SocksSocketImpl;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetserverPort(Ljava/net/SocksSocketImpl;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputcmdIn(Ljava/net/SocksSocketImpl;Ljava/io/InputStream;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputcmdOut(Ljava/net/SocksSocketImpl;Ljava/io/OutputStream;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$msuperConnectServer(Ljava/net/SocksSocketImpl;Ljava/lang/String;II)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/Proxy;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "authenticate(BLjava/io/InputStream;Ljava/io/BufferedOutputStream;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "authenticate(BLjava/io/InputStream;Ljava/io/BufferedOutputStream;J)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectV4(Ljava/io/InputStream;Ljava/io/OutputStream;Ljava/net/InetSocketAddress;J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUserName()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "privilegedConnect(Ljava/lang/String;II)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readSocksReply(Ljava/io/InputStream;[B)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readSocksReply(Ljava/io/InputStream;[BJ)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remainingMillis(J)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "superConnectServer(Ljava/lang/String;II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setV4()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/StandardProtocolFamily;": {"fields": {"$VALUES:[Ljava/net/StandardProtocolFamily;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INET:Ljava/net/StandardProtocolFamily;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INET6:Ljava/net/StandardProtocolFamily;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/net/StandardProtocolFamily;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/net/StandardProtocolFamily;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/StandardSocketOptions$StdSocketOption;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/StandardSocketOptions;": {"fields": {"IP_MULTICAST_IF:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_MULTICAST_LOOP:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_MULTICAST_TTL:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IP_TOS:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_BROADCAST:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_KEEPALIVE:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_LINGER:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_RCVBUF:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_REUSEADDR:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_REUSEPORT:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SO_SNDBUF:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TCP_NODELAY:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/URI$Parser;": {"fields": {"input:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ipv6byteCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requireServerAuthority:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/net/URI;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "at(IIC)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "at(IILjava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charAt(I)C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkChar(IJJLjava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkChars(IIJJLjava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fail(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fail(Ljava/lang/String;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "failExpecting(Ljava/lang/String;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "failExpecting(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseAuthority(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseHierarchical(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseHostname(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseIPv4Address(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseIPv6Reference(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseServer(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scan(IIC)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scan(IIJJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scan(IILjava/lang/String;Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanByte(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanEscape(IIC)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanHexPost(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanHexSeq(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanIPv4Address(IIZ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "substring(II)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "takeIPv4Address(IILjava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/URI;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_DASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_DIGIT:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_DOT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_ESCAPED:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_HEX:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_LEFT_BRACKET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_LOWALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_REG_NAME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_RESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_SCHEME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_SERVER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_SERVER_PERCENT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_UNDERSCORE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_UPALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_URIC:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_URIC_NO_SLASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "H_USERINFO:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_ALPHA:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_DASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_DIGIT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_DOT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_ESCAPED:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_HEX:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_LEFT_BRACKET:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_LOWALPHA:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_REG_NAME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_RESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_SCHEME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_SERVER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_SERVER_PERCENT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_UNDERSCORE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_UPALPHA:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_URIC:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_URIC_NO_SLASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "L_USERINFO:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexDigits:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x53fe87d1bc61b655L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "authority:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedAuthority:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedFragment:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedPath:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedQuery:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedSchemeSpecificPart:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodedUserInfo:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fragment:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "host:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "query:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "scheme:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "schemeSpecificPart:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "string:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "userInfo:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fputauthority(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputfragment(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputhost(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputpath(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputport(Ljava/net/URI;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputquery(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputscheme(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputschemeSpecificPart(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputstring(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputuserInfo(Ljava/net/URI;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_ALPHA()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_ALPHANUM()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_DASH()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_DOT()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_HEX()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_PATH()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_REG_NAME()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_SCHEME()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_SERVER()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_SERVER_PERCENT()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_UNDERSCORE()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_URIC()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetH_USERINFO()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_ALPHANUM()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_DASH()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_DIGIT()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_DOT()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_HEX()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_PATH()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_REG_NAME()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_SCHEME()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_SERVER()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_SERVER_PERCENT()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_UNDERSCORE()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_URIC()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetL_USERINFO()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smmatch(CJJ)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendAuthority(Ljava/lang/StringBuffer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendEncoded(Ljava/lang/StringBuffer;C)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendEscape(Ljava/lang/StringBuffer;B)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendFragment(Ljava/lang/StringBuffer;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendSchemeSpecificPart(Ljava/lang/StringBuffer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPath(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareIgnoringCase(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(Ljava/lang/String;)Ljava/net/URI;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(CC)B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decode(C)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defineSchemeSpecificPart()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defineString()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equal(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equalIgnoringCase(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash(ILjava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashIgnoringCase(ILjava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "highMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "highMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "join([C[I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match(CJJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maybeAddLeadingDot([C[I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needsNormalization(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalize(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalize(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalize(Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizedHash(ILjava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "quote(Ljava/lang/String;JJ)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "relativize(Ljava/net/URI;Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeDots([C[IZ)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolve(Ljava/net/URI;Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolvePath(Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "split([C[I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toLower(C)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toUpper(C)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/net/URI;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAuthority()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFragment()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHost()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQuery()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawAuthority()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawFragment()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawQuery()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawSchemeSpecificPart()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawUserInfo()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScheme()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSchemeSpecificPart()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserInfo()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAbsolute()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpaque()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalize()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseServerAuthority()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "relativize(Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/lang/String;)Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/net/URI;)Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toASCIIString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URISyntaxException;": {"fields": {"serialVersionUID:J": {"value": "0x1daba13138e5d7fbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "input:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInput()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReason()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URL;": {"fields": {"BUILTIN_HANDLER_CLASS_NAMES:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factory:Ljava/net/URLStreamHandlerFactory;": {"value": "null", "other": [".field", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "handlers:Ljava/util/Hashtable;": {"value": "null", "other": [".field", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "protocolPathProp:Ljava/lang/String;": {"value": "\"java.protocol.handler.pkgs\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x69dac8c9e5031b8eL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "streamHandlerLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "authority:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "file:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handler:Ljava/net/URLStreamHandler;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "host:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hostAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protocol:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "query:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ref:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tempState:Ljava/net/UrlDeserializedState;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userInfo:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/net/URLStreamHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/URL;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/URL;Ljava/lang/String;Ljava/net/URLStreamHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkSpecifyHandler(Ljava/lang/SecurityManager;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createBuiltinHandler(Ljava/lang/String;)Ljava/net/URLStreamHandler;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createBuiltinHandlerClassNames()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fabricateNewURL()Ljava/net/URL;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getURLStreamHandler(Ljava/lang/String;)Ljava/net/URLStreamHandler;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isBuiltinStreamHandler(Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidProtocol(Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resetState()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDeserializedFields(Ljava/net/URLStreamHandler;)Ljava/net/URL;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSerializedHashCode(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setURLStreamHandlerFactory(Ljava/net/URLStreamHandlerFactory;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAuthority()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent([Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFile()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHost()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtocol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQuery()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRef()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserInfo()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection()Ljava/net/URLConnection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/Proxy;)Ljava/net/URLConnection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openStream()Ljava/io/InputStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sameFile(Ljava/net/URL;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toExternalForm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toURI()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLClassLoader$1;": {"fields": {"this$0:Ljava/net/URLClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URLClassLoader;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLClassLoader$2;": {"fields": {"this$0:Ljava/net/URLClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URLClassLoader;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader$3$1;": {"fields": {"this$1:Ljava/net/URLClassLoader$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URLClassLoader$3;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader$3;": {"fields": {"this$0:Ljava/net/URLClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URLClassLoader;Ljava/util/Enumeration;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader$4;": {"fields": {"this$0:Ljava/net/URLClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$fp:Ljava/security/Permission;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$sm:Ljava/lang/SecurityManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URLClassLoader;Ljava/lang/SecurityManager;Ljava/security/Permission;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader$5;": {"fields": {"val$acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$parent:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$urls:[Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([Ljava/net/URL;Ljava/lang/ClassLoader;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/URLClassLoader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader$6;": {"fields": {"val$acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$urls:[Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([Ljava/net/URL;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/URLClassLoader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/net/URLClassLoader;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "closeables:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ucp:Lsun/misc/URLClassPath;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetacc(Ljava/net/URLClassLoader;)Ljava/security/AccessControlContext;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetucp(Ljava/net/URLClassLoader;)Lsun/misc/URLClassPath;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mdefineClass(Ljava/net/URLClassLoader;Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/net/URL;Ljava/lang/ClassLoader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/net/URL;Ljava/lang/ClassLoader;Ljava/net/URLStreamHandlerFactory;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/net/URL;Ljava/lang/ClassLoader;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([Ljava/net/URL;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "definePackageInternal(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAndVerifyPackage(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)Ljava/lang/Package;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSealed(Ljava/lang/String;Ljava/util/jar/Manifest;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance([Ljava/net/URL;)Ljava/net/URLClassLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance([Ljava/net/URL;Ljava/lang/ClassLoader;)Ljava/net/URLClassLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addURL(Ljava/net/URL;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "definePackage(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)Ljava/lang/Package;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURLs()[Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLConnection;": {"fields": {"contentClassPrefix:Ljava/lang/String;": {"value": "\"sun.net.www.content\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contentPathProp:Ljava/lang/String;": {"value": "\"java.content.handler.pkgs\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultAllowUserInteraction:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultUseCaches:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factory:Ljava/net/ContentHandlerFactory;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fileNameMap:Ljava/net/FileNameMap;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handlers:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allowUserInteraction:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connectTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connected:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doInput:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doOutput:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifModifiedSince:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requests:Lsun/net/www/MessageHeader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useCaches:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkfpx(Ljava/io/InputStream;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getContentHandlerPkgPrefixes()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefaultAllowUserInteraction()Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultRequestProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileNameMap()Ljava/net/FileNameMap;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "guessContentTypeFromName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "guessContentTypeFromStream(Ljava/io/InputStream;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupContentHandlerClassFor(Ljava/lang/String;)Ljava/net/ContentHandler;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readBytes([IILjava/io/InputStream;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setContentHandlerFactory(Ljava/net/ContentHandlerFactory;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultAllowUserInteraction(Z)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFileNameMap(Ljava/net/FileNameMap;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skipForward(Ljava/io/InputStream;J)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stripOffParameters(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeToPackageName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAllowUserInteraction()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnectTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent([Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentHandler()Ljava/net/ContentHandler;": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentLengthLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultUseCaches()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDoInput()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDoOutput()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExpiration()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldDate(Ljava/lang/String;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldInt(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldKey(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldLong(Ljava/lang/String;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFields()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIfModifiedSince()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastModified()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReadTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperties()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseCaches()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAllowUserInteraction(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setConnectTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultUseCaches(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDoInput(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDoOutput(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIfModifiedSince(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseCaches(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLDecoder;": {"fields": {"dfltEncName:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;Ljava/nio/charset/Charset;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidHexChar(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/net/URLEncoder;": {"fields": {"caseDiff:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dfltEncName:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dontNeedEncoding:Ljava/util/BitSet;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/lang/String;Ljava/nio/charset/Charset;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLStreamHandler;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostAddress(Ljava/net/URL;)Ljava/net/InetAddress;": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(Ljava/net/URL;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hostsEqual(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;)Ljava/net/URLConnection;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;Ljava/net/Proxy;)Ljava/net/URLConnection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseURL(Ljava/net/URL;Ljava/lang/String;II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sameFile(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setURL(Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setURL(Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toExternalForm(Ljava/net/URL;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/URLStreamHandlerFactory;": {"fields": {}, "methods": {"createURLStreamHandler(Ljava/lang/String;)Ljava/net/URLStreamHandler;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/UnknownContentHandler;": {"fields": {"INSTANCE:Ljava/net/ContentHandler;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContent(Ljava/net/URLConnection;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/UnknownHostException;": {"fields": {"serialVersionUID:J": {"value": "-0x40617c964762288bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/UnknownServiceException;": {"fields": {"serialVersionUID:J": {"value": "-0x39db61a6beb6c154L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/net/UrlDeserializedState;": {"fields": {"authority:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "file:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "host:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protocol:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ref:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAuthority()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFile()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHashCode()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHost()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPort()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProtocol()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRef()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reconstituteUrlString()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/Bits;": {"fields": {"byteOrder:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageSize:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unaligned:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unalignedKnown:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_get(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_put(JB)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteOrder()Ljava/nio/ByteOrder;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "char0(C)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "char1(C)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(JZ)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(Ljava/nio/ByteBuffer;IZ)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCharB(J)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCharB(Ljava/nio/ByteBuffer;I)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCharL(J)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCharL(Ljava/nio/ByteBuffer;I)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble(JZ)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble(Ljava/nio/ByteBuffer;IZ)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDoubleB(J)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDoubleB(Ljava/nio/ByteBuffer;I)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDoubleL(J)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDoubleL(Ljava/nio/ByteBuffer;I)D": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat(JZ)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat(Ljava/nio/ByteBuffer;IZ)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloatB(J)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloatB(Ljava/nio/ByteBuffer;I)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloatL(J)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloatL(Ljava/nio/ByteBuffer;I)F": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(JZ)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(Ljava/nio/ByteBuffer;IZ)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntB(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntB(Ljava/nio/ByteBuffer;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntL(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntL(Ljava/nio/ByteBuffer;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(JZ)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/nio/ByteBuffer;IZ)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongB(J)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongB(Ljava/nio/ByteBuffer;I)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongL(J)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongL(Ljava/nio/ByteBuffer;I)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort(JZ)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort(Ljava/nio/ByteBuffer;IZ)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShortB(J)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShortB(Ljava/nio/ByteBuffer;I)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShortL(J)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShortL(Ljava/nio/ByteBuffer;I)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "int0(I)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "int1(I)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "int2(I)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "int3(I)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long0(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long1(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long2(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long3(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long4(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long5(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long6(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "long7(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChar(BB)C": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(BBBB)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(BBBBBBBB)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeShort(BB)S": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageCount(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageSize()I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar(JCZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar(Ljava/nio/ByteBuffer;ICZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putCharB(JC)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putCharB(Ljava/nio/ByteBuffer;IC)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putCharL(JC)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putCharL(Ljava/nio/ByteBuffer;IC)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(JDZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(Ljava/nio/ByteBuffer;IDZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDoubleB(JD)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDoubleB(Ljava/nio/ByteBuffer;ID)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDoubleL(JD)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDoubleL(Ljava/nio/ByteBuffer;ID)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(JFZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(Ljava/nio/ByteBuffer;IFZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloatB(JF)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloatB(Ljava/nio/ByteBuffer;IF)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloatL(JF)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloatL(Ljava/nio/ByteBuffer;IF)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(JIZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(Ljava/nio/ByteBuffer;IIZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntB(JI)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntB(Ljava/nio/ByteBuffer;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntL(JI)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntL(Ljava/nio/ByteBuffer;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(JJZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(Ljava/nio/ByteBuffer;IJZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongB(JJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongB(Ljava/nio/ByteBuffer;IJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongL(JJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongL(Ljava/nio/ByteBuffer;IJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(JSZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(Ljava/nio/ByteBuffer;ISZ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShortB(JS)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShortB(Ljava/nio/ByteBuffer;IS)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShortL(JS)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShortL(Ljava/nio/ByteBuffer;IS)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "short0(S)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "short1(S)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "swap(C)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "swap(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "swap(J)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "swap(S)S": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unaligned()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe()Lsun/misc/Unsafe;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/Buffer;": {"fields": {"SPLITERATOR_CHARACTERISTICS:I": {"value": "0x4050", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "_elementSizeShift:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "capacity:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "limit:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "mark:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "position:I": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(IIIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkBounds(III)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "array()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "capacity()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkIndex(I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkIndex(II)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "discardMark()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getElementSizeShift()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasArray()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasRemaining()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markValue()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextGetIndex()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextGetIndex(I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextPutIndex()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextPutIndex(I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "position()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remaining()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/BufferOverflowException;": {"fields": {"serialVersionUID:J": {"value": "-0x4c1e455692f91657L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/BufferUnderflowException;": {"fields": {"serialVersionUID:J": {"value": "-0x17c6e9b1ef23953eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBuffer;": {"fields": {"bigEndian:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hb:[B": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "nativeByteOrder:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[BI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allocateDirect(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(BB)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(BB)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([B)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "_get(I)B": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "_put(IB)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "alignedSlice(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "alignmentOffset(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asCharBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asFloatBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asIntBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLongBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asShortBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([B)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar(I)C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharUnchecked(I)C": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDouble()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(I)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDoubleUnchecked(I)D": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFloat()F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(I)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloatUnchecked(I)F": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInt()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIntUnchecked(I)I": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLong()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLongUnchecked(I)J": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShort()S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(I)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShortUnchecked(I)S": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[CII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[DII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[FII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[III)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[JII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[SII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAccessible()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(B)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IB)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([B)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(C)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(IC)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putCharUnchecked(IC)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putDouble(D)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDouble(ID)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDoubleUnchecked(ID)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putFloat(F)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloat(IF)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloatUnchecked(IF)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putInt(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putInt(II)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIntUnchecked(II)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putLong(IJ)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLong(J)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLongUnchecked(IJ)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putShort(IS)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShort(S)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShortUnchecked(IS)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[CII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[DII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[FII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[III)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[JII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[SII)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAccessible(Z)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice(II)Ljava/nio/ByteBuffer;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBufferAsDoubleBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(ID)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBufferAsCharBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnchecked(I)C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(C)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IC)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(II)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/ByteBufferAsFloatBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(F)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IF)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBufferAsIntBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(I)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(II)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBufferAsLongBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IJ)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(J)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteBufferAsShortBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/ByteBuffer;IIIIILjava/nio/ByteOrder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IS)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(S)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ByteOrder;": {"fields": {"BIG_ENDIAN:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LITTLE_ENDIAN:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativeOrder()Ljava/nio/ByteOrder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/CharBuffer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/nio/CharBuffer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/CharBuffer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/CharBuffer;": {"fields": {"hb:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[CI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/CharBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(CC)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(CC)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap(Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([C)Ljava/nio/CharBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/lang/Appendable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(C)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/CharSequence;II)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charAt(I)C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chars()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/CharBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([C)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnchecked(I)C": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$chars$0$java-nio-CharBuffer()Ljava/util/Spliterator$OfInt;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(C)Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IC)Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;II)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/CharBuffer;)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([C)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/CharBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/CharBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/nio/CharBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(II)Ljava/lang/String;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Ljava/nio/CharBufferSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buffer:Ljava/nio/CharBuffer;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "limit:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/CharBuffer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/CharBuffer;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/DirectByteBuffer$MemoryRef;": {"fields": {"allocatedAddress:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buffer:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAccessible:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFreed:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalBufferObject:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(JLjava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "free()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/DirectByteBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "memoryRef:Ljava/nio/DirectByteBuffer$MemoryRef;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IJLjava/io/FileDescriptor;Ljava/lang/Runnable;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "(ILjava/nio/DirectByteBuffer$MemoryRef;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(JI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/nio/DirectByteBuffer$MemoryRef;IIIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/nio/DirectByteBuffer$MemoryRef;IIIIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(J)B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDouble(J)D": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFloat(J)F": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInt(J)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLong(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShort(J)S": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ix(I)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(JB)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putChar(JC)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putDouble(JD)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putFloat(JF)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putInt(JI)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putLong(JJ)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putShort(JS)Ljava/nio/ByteBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "_get(I)B": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "_put(IB)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "address()J": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "asCharBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asFloatBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asIntBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLongBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asShortBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attachment()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner()Lsun/misc/Cleaner;": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "compact()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar()C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar(I)C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharUnchecked(I)C": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDouble()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(I)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDoubleUnchecked(I)D": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFloat()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(I)F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloatUnchecked(I)F": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIntUnchecked(I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLong()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLongUnchecked(I)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShort()S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(I)S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShortUnchecked(I)S": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[CII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[DII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[FII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[III)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[JII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnchecked(I[SII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAccessible()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(B)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IB)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(C)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(IC)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putCharUnchecked(IC)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putDouble(D)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDouble(ID)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDoubleUnchecked(ID)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putFloat(F)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloat(IF)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloatUnchecked(IF)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putInt(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putInt(II)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIntUnchecked(II)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putLong(IJ)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLong(J)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLongUnchecked(IJ)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putShort(IS)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShort(S)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShortUnchecked(IS)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[CII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[DII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[FII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[III)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[JII)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putUnchecked(I[SII)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setAccessible(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice(II)Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/DoubleBuffer;": {"fields": {"hb:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[DI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(DD)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(DD)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/DoubleBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(ID)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/DoubleBuffer;)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/DoubleBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/FloatBuffer;": {"fields": {"hb:[F": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[FI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(FF)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(FF)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([F)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/FloatBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([F)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(F)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IF)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/FloatBuffer;)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([F)Ljava/nio/FloatBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/FloatBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/HeapByteBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([BII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([BIIIIIZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([BIIZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_get(I)B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_put(IB)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asCharBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asFloatBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asIntBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLongBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asShortBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChar(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharUnchecked(I)C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(I)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDoubleUnchecked(I)D": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(I)F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloatUnchecked(I)F": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIntUnchecked(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(I)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLongUnchecked(I)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(I)S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShortUnchecked(I)S": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[CII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[DII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[FII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[III)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[JII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnchecked(I[SII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(B)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IB)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([BII)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(C)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putChar(IC)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putCharUnchecked(IC)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(D)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDouble(ID)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDoubleUnchecked(ID)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(F)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloat(IF)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloatUnchecked(IF)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putInt(II)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIntUnchecked(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(IJ)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLong(J)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLongUnchecked(IJ)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(IS)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShort(S)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putShortUnchecked(IS)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[CII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[DII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[FII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[III)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[JII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUnchecked(I[SII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "slice()Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice(II)Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/HeapCharBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([CII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([CIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([CIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([CIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnchecked(I)C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(C)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IC)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/CharBuffer;)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([CII)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(II)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/HeapDoubleBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([DII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([DIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([DIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([DIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(D)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(ID)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/DoubleBuffer;)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([DII)Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/DoubleBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/HeapFloatBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([FII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([FIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([FIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([FIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(F)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IF)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/FloatBuffer;)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([FII)Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/FloatBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/HeapIntBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([IIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([IIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([IIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(I)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(II)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/IntBuffer;)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/HeapLongBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([JII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([JIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([JIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([JIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IJ)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(J)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/LongBuffer;)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/HeapShortBuffer;": {"fields": {}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([SII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([SIIIII)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([SIIIIIZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([SIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ix(I)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IS)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/ShortBuffer;)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(S)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/IntBuffer;": {"fields": {"hb:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(II)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([III)Ljava/nio/IntBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/IntBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([I)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(II)Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/IntBuffer;)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([I)Ljava/nio/IntBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([III)Ljava/nio/IntBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/IntBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/IntBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/InvalidMarkException;": {"fields": {"serialVersionUID:J": {"value": "0x1791addf9e2df0b6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/LongBuffer;": {"fields": {"hb:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[JI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/LongBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(JJ)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(JJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([J)Ljava/nio/LongBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/LongBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([J)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IJ)Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(J)Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/LongBuffer;)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([J)Ljava/nio/LongBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([JII)Ljava/nio/LongBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/LongBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/LongBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/MappedByteBuffer;": {"fields": {"unused:B": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIIILjava/io/FileDescriptor;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[BI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkMapped()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "force0(Ljava/io/FileDescriptor;JJ)V": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLoaded0(JJI)Z": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "load0(JJ)V": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mappingAddress(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mappingLength(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mappingOffset()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "force()Ljava/nio/MappedByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoaded()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load()Ljava/nio/MappedByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ReadOnlyBufferException;": {"fields": {"serialVersionUID:J": {"value": "-0x10cb02c6828dfe6aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/ShortBuffer;": {"fields": {"hb:[S": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReadOnly:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IIII[SI)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allocate(I)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(SS)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(SS)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap([S)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "array()[S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayOffset()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadOnlyBuffer()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/ShortBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([S)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasArray()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(I)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(I)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IS)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/nio/ShortBuffer;)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(S)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([S)Ljava/nio/ShortBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put([SII)Ljava/nio/ShortBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/Buffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rewind()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/ShortBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/StringCharBuffer;": {"fields": {"str:Ljava/lang/CharSequence;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/CharSequence;IIIII)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadOnlyBuffer()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compact()Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicate()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnchecked(I)C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "order()Ljava/nio/ByteOrder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(C)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(IC)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "slice()Ljava/nio/CharBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/lang/CharSequence;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSequence(II)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(II)Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/channels/AcceptPendingException;": {"fields": {"serialVersionUID:J": {"value": "0x25c4244aabb2afe5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AlreadyBoundException;": {"fields": {"serialVersionUID:J": {"value": "0x5e50805f0694bbb8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AlreadyConnectedException;": {"fields": {"serialVersionUID:J": {"value": "-0x65c01fe11bce462dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousByteChannel;": {"fields": {}, "methods": {"read(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousChannel;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousCloseException;": {"fields": {"serialVersionUID:J": {"value": "0x5fa2622a0467666eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousChannelGroup;": {"fields": {"provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AsynchronousChannelProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withCachedThreadPool(Ljava/util/concurrent/ExecutorService;I)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedThreadPool(ILjava/util/concurrent/ThreadFactory;)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withThreadPool(Ljava/util/concurrent/ExecutorService;)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShutdown()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdown()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousServerSocketChannel;": {"fields": {"provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AsynchronousChannelProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept()Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;I)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousFileChannel;": {"fields": {"NO_ATTRIBUTES:[Ljava/nio/file/attribute/FileAttribute;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/file/Path;Ljava/util/Set;Ljava/util/concurrent/ExecutorService;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "force(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock()Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZ)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;J)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Ljava/nio/channels/FileLock;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;J)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/AsynchronousSocketChannel;": {"fields": {"provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AsynchronousChannelProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ByteChannel;": {"fields": {}, "methods": {}}, "Ljava/nio/channels/CancelledKeyException;": {"fields": {"serialVersionUID:J": {"value": "-0x7519e985de898fbcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channel;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels$1;": {"fields": {"b1:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bs:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$ch:Ljava/nio/channels/WritableByteChannel;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/WritableByteChannel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels$3;": {"fields": {"b1:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bs:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$ch:Ljava/nio/channels/AsynchronousByteChannel;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/AsynchronousByteChannel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels$2;": {"fields": {"b1:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bs:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$ch:Ljava/nio/channels/AsynchronousByteChannel;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/AsynchronousByteChannel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels$ReadableByteChannelImpl;": {"fields": {"TRANSFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "in:Ljava/io/InputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implCloseChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels$WritableByteChannelImpl;": {"fields": {"TRANSFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "out:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implCloseChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Channels;": {"fields": {}, "methods": {"-$$Nest$smwriteFully(Ljava/nio/channels/WritableByteChannel;Ljava/nio/ByteBuffer;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newChannel(Ljava/io/InputStream;)Ljava/nio/channels/ReadableByteChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newChannel(Ljava/io/OutputStream;)Ljava/nio/channels/WritableByteChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInputStream(Ljava/nio/channels/AsynchronousByteChannel;)Ljava/io/InputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInputStream(Ljava/nio/channels/ReadableByteChannel;)Ljava/io/InputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newOutputStream(Ljava/nio/channels/AsynchronousByteChannel;)Ljava/io/OutputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newOutputStream(Ljava/nio/channels/WritableByteChannel;)Ljava/io/OutputStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newReader(Ljava/nio/channels/ReadableByteChannel;Ljava/lang/String;)Ljava/io/Reader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newReader(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/charset/Charset;)Ljava/io/Reader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newReader(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/charset/CharsetDecoder;I)Ljava/io/Reader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWriter(Ljava/nio/channels/WritableByteChannel;Ljava/lang/String;)Ljava/io/Writer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWriter(Ljava/nio/channels/WritableByteChannel;Ljava/nio/charset/Charset;)Ljava/io/Writer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWriter(Ljava/nio/channels/WritableByteChannel;Ljava/nio/charset/CharsetEncoder;I)Ljava/io/Writer;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFully(Ljava/nio/channels/WritableByteChannel;Ljava/nio/ByteBuffer;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeFullyImpl(Ljava/nio/channels/WritableByteChannel;Ljava/nio/ByteBuffer;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/channels/ClosedByInterruptException;": {"fields": {"serialVersionUID:J": {"value": "-0x3e49426dec45f79eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ClosedChannelException;": {"fields": {"serialVersionUID:J": {"value": "0xc40412c49960bc1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ConnectionPendingException;": {"fields": {"serialVersionUID:J": {"value": "0x1bdf3f203b969f6fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/CompletionHandler;": {"fields": {}, "methods": {"completed(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "failed(Ljava/lang/Throwable;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ClosedSelectorException;": {"fields": {"serialVersionUID:J": {"value": "0x59bce6f90be2cd1bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/FileLock;": {"fields": {"channel:Ljava/nio/channels/Channel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "position:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shared:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/AsynchronousFileChannel;JJZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/channels/FileChannel;JJZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquiredBy()Ljava/nio/channels/Channel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "channel()Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShared()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "overlaps(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/FileChannel;": {"fields": {"NO_ATTRIBUTES:[Ljava/nio/file/attribute/FileAttribute;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "force(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock()Ljava/nio/channels/FileLock;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/nio/channels/FileChannel$MapMode;JJ)Ljava/nio/MappedByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(J)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferFrom(Ljava/nio/channels/ReadableByteChannel;JJ)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(JJLjava/nio/channels/WritableByteChannel;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Ljava/nio/channels/FileLock;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/FileChannel$MapMode;": {"fields": {"PRIVATE:Ljava/nio/channels/FileChannel$MapMode;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_ONLY:Ljava/nio/channels/FileChannel$MapMode;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_WRITE:Ljava/nio/channels/FileChannel$MapMode;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/DatagramChannel;": {"fields": {}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/net/ProtocolFamily;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disconnect()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/nio/ByteBuffer;)Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/nio/ByteBuffer;Ljava/net/SocketAddress;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/DatagramSocket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/FileLockInterruptionException;": {"fields": {"serialVersionUID:J": {"value": "0x6296c3b4d4b27adfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/GatheringByteChannel;": {"fields": {}, "methods": {"write([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/IllegalBlockingModeException;": {"fields": {"serialVersionUID:J": {"value": "-0x2e4b0da7740b704aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/IllegalChannelGroupException;": {"fields": {"serialVersionUID:J": {"value": "-0x22a02ac323048a7dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/IllegalSelectorException;": {"fields": {"serialVersionUID:J": {"value": "-0x74a9428bb41b5d1bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/InterruptedByTimeoutException;": {"fields": {"serialVersionUID:J": {"value": "-0x3b3b0335b1c10143L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/InterruptibleChannel;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NoConnectionPendingException;": {"fields": {"serialVersionUID:J": {"value": "-0x73234e707fbf5497L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NetworkChannel;": {"fields": {}, "methods": {"bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NonWritableChannelException;": {"fields": {"serialVersionUID:J": {"value": "-0x62220eaa02c85125L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/MulticastChannel;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/MembershipKey;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "block(Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "channel()Ljava/nio/channels/MulticastChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drop()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "networkInterface()Ljava/net/NetworkInterface;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sourceAddress()Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unblock(Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/OverlappingFileLockException;": {"fields": {"serialVersionUID:J": {"value": "0x1c6b4a4a35f15e11L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Pipe$SinkChannel;": {"fields": {}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NotYetConnectedException;": {"fields": {"serialVersionUID:J": {"value": "0x413038843a2118f8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ReadPendingException;": {"fields": {"serialVersionUID:J": {"value": "0x1b90cf3056c08951L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NotYetBoundException;": {"fields": {"serialVersionUID:J": {"value": "0x4068244722c97582L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/NonReadableChannelException;": {"fields": {"serialVersionUID:J": {"value": "-0x2c6befd9e45b346aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ScatteringByteChannel;": {"fields": {}, "methods": {"read([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ReadableByteChannel;": {"fields": {}, "methods": {"read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Pipe;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/Pipe;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sink()Ljava/nio/channels/Pipe$SinkChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "source()Ljava/nio/channels/Pipe$SourceChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Pipe$SourceChannel;": {"fields": {}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/SelectionKey;": {"fields": {"OP_ACCEPT:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OP_CONNECT:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OP_READ:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OP_WRITE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attachmentUpdater:Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attach(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attachment()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "channel()Ljava/nio/channels/SelectableChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interestOps()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interestOps(I)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interestOpsAnd(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interestOpsOr(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAcceptable()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnectable()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadable()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWritable()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readyOps()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selector()Ljava/nio/channels/Selector;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/SelectableChannel;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "blockingLock()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configureBlocking(Z)Ljava/nio/channels/SelectableChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBlocking()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegistered()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyFor(Ljava/nio/channels/Selector;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/channels/Selector;I)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/channels/Selector;ILjava/lang/Object;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/SeekableByteChannel;": {"fields": {}, "methods": {"position()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ServerSocketChannel;": {"fields": {}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;I)Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/ServerSocket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Selector$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/nio/channels/Selector;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/Selector;Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/Selector;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doSelect(Ljava/util/function/Consumer;J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open()Ljava/nio/channels/Selector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$doSelect$0$java-nio-channels-Selector(Ljava/util/function/Consumer;Ljava/nio/channels/SelectionKey;)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(J)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(Ljava/util/function/Consumer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(Ljava/util/function/Consumer;J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectNow()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectNow(Ljava/util/function/Consumer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectedKeys()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wakeup()Ljava/nio/channels/Selector;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/ShutdownChannelGroupException;": {"fields": {"serialVersionUID:J": {"value": "-0x362d16f1006ce5adL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/UnresolvedAddressException;": {"fields": {"serialVersionUID:J": {"value": "0x552adbc7d85ee324L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/SocketChannel;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open(Ljava/net/SocketAddress;)Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finishConnect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnectionPending()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validOps()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/WritePendingException;": {"fields": {"serialVersionUID:J": {"value": "0x61963a2e6d864a94L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/WritableByteChannel;": {"fields": {}, "methods": {"write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/UnsupportedAddressTypeException;": {"fields": {"serialVersionUID:J": {"value": "-0x292364d45315cd8dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/AbstractInterruptibleChannel$1;": {"fields": {"this$0:Ljava/nio/channels/spi/AbstractInterruptibleChannel;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AbstractInterruptibleChannel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt(Ljava/lang/Thread;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/channels/spi/AbstractSelector;": {"fields": {"cancelledKeys:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptor:Lsun/nio/ch/Interruptible;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/nio/channels/spi/SelectorProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "selectorOpen:Ljava/util/concurrent/atomic/AtomicBoolean;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin()V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel(Ljava/nio/channels/SelectionKey;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelledKeys()Ljava/util/Set;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deregister(Ljava/nio/channels/spi/AbstractSelectionKey;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end()V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseSelector()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/channels/spi/AbstractSelectableChannel;ILjava/lang/Object;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/AbstractSelector$1;": {"fields": {"this$0:Ljava/nio/channels/spi/AbstractSelector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AbstractSelector;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt(Ljava/lang/Thread;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/channels/spi/AbstractSelectionKey;": {"fields": {"valid:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invalidate()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/AbstractInterruptibleChannel;": {"fields": {"closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interrupted:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptor:Lsun/nio/ch/Interruptible;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "open:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetcloseLock(Ljava/nio/channels/spi/AbstractInterruptibleChannel;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetopen(Ljava/nio/channels/spi/AbstractInterruptibleChannel;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputinterrupted(Ljava/nio/channels/spi/AbstractInterruptibleChannel;Ljava/lang/Thread;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputopen(Ljava/nio/channels/spi/AbstractInterruptibleChannel;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "blockedOn(Lsun/nio/ch/Interruptible;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "begin()V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(Z)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseChannel()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/AsynchronousChannelProvider$ProviderHolder$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/channels/spi/AbstractSelectableChannel;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keyCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keys:[Ljava/nio/channels/SelectionKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nonBlocking:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider:Ljava/nio/channels/spi/SelectorProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "regLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addKey(Ljava/nio/channels/SelectionKey;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findKey(Ljava/nio/channels/Selector;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "haveValidKeys()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "blockingLock()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configureBlocking(Z)Ljava/nio/channels/SelectableChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseChannel()V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseSelectableChannel()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBlocking()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegistered()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyFor(Ljava/nio/channels/Selector;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/channels/Selector;ILjava/lang/Object;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeKey(Ljava/nio/channels/SelectionKey;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousChannelGroup(ILjava/util/concurrent/ThreadFactory;)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousChannelGroup(Ljava/util/concurrent/ExecutorService;I)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousServerSocketChannel(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousSocketChannel(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/AsynchronousChannelProvider$ProviderHolder;": {"fields": {"provider:Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smloadProviderAsService()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadProviderFromProperty()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "load()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadProviderAsService()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadProviderFromProperty()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/channels/spi/SelectorProvider;": {"fields": {"lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/nio/channels/spi/SelectorProvider;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetprovider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputprovider(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadProviderAsService()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadProviderFromProperty()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPermission()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadProviderAsService()Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadProviderFromProperty()Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inheritedChannel()Ljava/nio/channels/Channel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openDatagramChannel()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openDatagramChannel(Ljava/net/ProtocolFamily;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openPipe()Ljava/nio/channels/Pipe;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openSelector()Ljava/nio/channels/spi/AbstractSelector;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openServerSocketChannel()Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openSocketChannel()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/channels/spi/SelectorProvider$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/charset/CharacterCodingException;": {"fields": {"serialVersionUID:J": {"value": "0x74df4af22a143ec7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/Charset$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/nio/charset/spi/CharsetProvider;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sl:Ljava/util/ServiceLoader;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNext()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/charset/spi/CharsetProvider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/Charset$2;": {"fields": {"val$charsetName:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/nio/charset/Charset;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/charset/Charset$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/charset/Charset;": {"fields": {"bugLevel:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cache1:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cache2:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultCharset:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "gate:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "aliasSet:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "aliases:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smproviders()Ljava/util/Iterator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smput(Ljava/util/Iterator;Ljava/util/Map;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;[Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atBugLevel(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "availableCharsets()Ljava/util/SortedMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cache(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkName(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultCharset()Ljava/nio/charset/Charset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forName(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forNameUEE(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSupported(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookup(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookup2(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupViaProviders(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "providers()Ljava/util/Iterator;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(Ljava/util/Iterator;Ljava/util/Map;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "aliases()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canEncode()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/charset/Charset;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/nio/charset/Charset;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "displayName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "displayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/lang/String;)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/nio/CharBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegistered()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDecoder()Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newEncoder()Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/CharsetDecoder;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_CODING:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_END:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_FLUSHED:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_RESET:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stateNames:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "averageCharsPerByte:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charset:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "malformedInputAction:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxCharsPerByte:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replacement:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmappableCharacterAction:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/charset/Charset;FF)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/charset/Charset;FFLjava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwIllegalStateException(II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "averageCharsPerByte()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charset()Ljava/nio/charset/Charset;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;Z)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decodeLoop(Ljava/nio/ByteBuffer;Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "detectedCharset()Ljava/nio/charset/Charset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush(Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implFlush(Ljava/nio/CharBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implOnMalformedInput(Ljava/nio/charset/CodingErrorAction;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implOnUnmappableCharacter(Ljava/nio/charset/CodingErrorAction;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implReplaceWith(Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implReset()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAutoDetecting()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCharsetDetected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "malformedInputAction()Ljava/nio/charset/CodingErrorAction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "maxCharsPerByte()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onMalformedInput(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onUnmappableCharacter(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceWith(Ljava/lang/String;)Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replacement()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmappableCharacterAction()Ljava/nio/charset/CodingErrorAction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/CharsetEncoder;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_CODING:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_END:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_FLUSHED:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ST_RESET:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stateNames:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "averageBytesPerChar:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedDecoder:Ljava/lang/ref/WeakReference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charset:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "malformedInputAction:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxBytesPerChar:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replacement:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmappableCharacterAction:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/charset/Charset;FF)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/charset/Charset;FF[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/charset/Charset;FF[BZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canEncode(Ljava/nio/CharBuffer;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "throwIllegalStateException(II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "averageBytesPerChar()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canEncode(C)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canEncode(Ljava/lang/CharSequence;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charset()Ljava/nio/charset/Charset;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/nio/CharBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;Z)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodeLoop(Ljava/nio/CharBuffer;Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush(Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implFlush(Ljava/nio/ByteBuffer;)Ljava/nio/charset/CoderResult;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implOnMalformedInput(Ljava/nio/charset/CodingErrorAction;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implOnUnmappableCharacter(Ljava/nio/charset/CodingErrorAction;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implReplaceWith([B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implReset()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLegalReplacement([B)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "malformedInputAction()Ljava/nio/charset/CodingErrorAction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "maxBytesPerChar()F": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onMalformedInput(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onUnmappableCharacter(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceWith([B)Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replacement()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmappableCharacterAction()Ljava/nio/charset/CodingErrorAction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/CoderMalfunctionError;": {"fields": {"serialVersionUID:J": {"value": "-0xffaa36e1bfbb6fdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Exception;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/CoderResult$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/charset/CoderResult$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/charset/CoderResult$Cache-IA;": {"fields": {}, "methods": {}}, "Ljava/nio/charset/CoderResult$Cache;": {"fields": {"cache:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mget(Ljava/nio/charset/CoderResult$Cache;I)Ljava/nio/charset/CoderResult;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/nio/charset/CoderResult$Cache-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/charset/CoderResult-IA;": {"fields": {}, "methods": {}}, "Ljava/nio/charset/CoderResult;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CR_ERROR_MIN:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CR_MALFORMED:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CR_OVERFLOW:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CR_UNDERFLOW:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CR_UNMAPPABLE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OVERFLOW:Ljava/nio/charset/CoderResult;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDERFLOW:Ljava/nio/charset/CoderResult;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "malformedCache:Ljava/nio/charset/CoderResult$Cache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "names:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmappableCache:Ljava/nio/charset/CoderResult$Cache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(IILjava/nio/charset/CoderResult-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "malformedForLength(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmappableForLength(I)Ljava/nio/charset/CoderResult;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isError()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMalformed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOverflow()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnderflow()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUnmappable()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "throwException()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/CodingErrorAction;": {"fields": {"IGNORE:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REPLACE:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REPORT:Ljava/nio/charset/CodingErrorAction;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/IllegalCharsetNameException;": {"fields": {"serialVersionUID:J": {"value": "0x143a2b975aba792dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "charsetName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharsetName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/MalformedInputException;": {"fields": {"serialVersionUID:J": {"value": "-0x2fb927a9987467b2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "inputLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/StandardCharsets;": {"fields": {"ISO_8859_1:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "US_ASCII:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTF_16:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTF_16BE:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTF_16LE:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTF_8:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/charset/UnmappableCharacterException;": {"fields": {"serialVersionUID:J": {"value": "-0x6184c90be58a9c8bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "inputLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/UnsupportedCharsetException;": {"fields": {"serialVersionUID:J": {"value": "0x14b04358a8c650ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "charsetName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharsetName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/charset/spi/CharsetProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charsetForName(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charsets()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/AccessDeniedException;": {"fields": {"serialVersionUID:J": {"value": "0x44993d6bf81c2721L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/AccessMode;": {"fields": {"$VALUES:[Ljava/nio/file/AccessMode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXECUTE:Ljava/nio/file/AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ:Ljava/nio/file/AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE:Ljava/nio/file/AccessMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/AccessMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/AccessMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/AtomicMoveNotSupportedException;": {"fields": {"serialVersionUID:J": {"value": "0x4afa75ccc59748dbL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ClosedDirectoryStreamException;": {"fields": {"serialVersionUID:J": {"value": "0x3aae3f418bf396a8L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ClosedFileSystemException;": {"fields": {"serialVersionUID:J": {"value": "-0x71383b70031bf5d0L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ClosedWatchServiceException;": {"fields": {"serialVersionUID:J": {"value": "0x19b85f83c6168324L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/CopyMoveHelper$CopyOptions;": {"fields": {"copyAttributes:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replaceExisting:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse([Ljava/nio/file/CopyOption;)Ljava/nio/file/CopyMoveHelper$CopyOptions;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/CopyMoveHelper;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convertMoveToCopyOptions([Ljava/nio/file/CopyOption;)[Ljava/nio/file/CopyOption;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyToForeignTarget(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "moveToForeignTarget(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/CopyOption;": {"fields": {}, "methods": {}}, "Ljava/nio/file/DirectoryIteratorException;": {"fields": {"serialVersionUID:J": {"value": "-0x537166b093334d0aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/IOException;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getCause()Ljava/io/IOException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/DirectoryNotEmptyException;": {"fields": {"serialVersionUID:J": {"value": "0x2a6b773c0727657bL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/DirectoryStream$Filter;": {"fields": {}, "methods": {"accept(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/DirectoryStream;": {"fields": {}, "methods": {"iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileAlreadyExistsException;": {"fields": {"serialVersionUID:J": {"value": "0x692ff0526155cb4dL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileStore;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttribute(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlockSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStoreAttributeView(Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalSpace()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnallocatedSpace()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUsableSpace()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFileAttributeView(Ljava/lang/Class;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFileAttributeView(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystem;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStores()Ljava/lang/Iterable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPathMatcher(Ljava/lang/String;)Ljava/nio/file/PathMatcher;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRootDirectories()Ljava/lang/Iterable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeparator()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserPrincipalLookupService()Ljava/nio/file/attribute/UserPrincipalLookupService;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWatchService()Ljava/nio/file/WatchService;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedFileAttributeViews()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystemAlreadyExistsException;": {"fields": {"serialVersionUID:J": {"value": "-0x4b792561d7523d8cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystemException;": {"fields": {"serialVersionUID:J": {"value": "-0x2a670d87892c9f04L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "file:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "other:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFile()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOtherFile()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReason()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystemLoopException;": {"fields": {"serialVersionUID:J": {"value": "0x4335eed96f492f51L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystemNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "0x6f04393b2d85375dL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileSystems$DefaultFileSystemHolder$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileSystems$DefaultFileSystemHolder;": {"fields": {"defaultFileSystem:Ljava/nio/file/FileSystem;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smgetDefaultProvider()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultFileSystem()Ljava/nio/file/FileSystem;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefaultProvider()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileSystems;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefault()Ljava/nio/file/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileSystem(Ljava/net/URI;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/net/URI;Ljava/util/Map;Ljava/lang/ClassLoader;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/nio/file/Path;Ljava/lang/ClassLoader;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileTreeIterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/nio/file/FileTreeWalker$Event;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "walker:Ljava/nio/file/FileTreeWalker;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/Path;I[Ljava/nio/file/FileVisitOption;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fetchNextIfNeeded()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/file/FileTreeWalker$Event;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileTreeWalker$DirectoryNode;": {"fields": {"dir:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipped:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stream:Ljava/nio/file/DirectoryStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/Path;Ljava/lang/Object;Ljava/nio/file/DirectoryStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "directory()Ljava/nio/file/Path;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skip()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipped()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stream()Ljava/nio/file/DirectoryStream;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileTreeWalker$1;": {"fields": {"$SwitchMap$java$nio$file$FileVisitOption:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileTreeWalker$Event;": {"fields": {"attrs:Ljava/nio/file/attribute/BasicFileAttributes;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ioe:Ljava/io/IOException;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Ljava/nio/file/FileTreeWalker$EventType;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/FileTreeWalker$EventType;Ljava/nio/file/Path;Ljava/io/IOException;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/FileTreeWalker$EventType;Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/FileTreeWalker$EventType;Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;Ljava/io/IOException;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file()Ljava/nio/file/Path;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ioeException()Ljava/io/IOException;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type()Ljava/nio/file/FileTreeWalker$EventType;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileTreeWalker$EventType;": {"fields": {"$VALUES:[Ljava/nio/file/FileTreeWalker$EventType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "END_DIRECTORY:Ljava/nio/file/FileTreeWalker$EventType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENTRY:Ljava/nio/file/FileTreeWalker$EventType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "START_DIRECTORY:Ljava/nio/file/FileTreeWalker$EventType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/FileTreeWalker$EventType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljava/nio/file/FileTreeWalker$EventType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileTreeWalker;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "linkOptions:[Ljava/nio/file/LinkOption;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "maxDepth:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "stack:Ljava/util/ArrayDeque;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Collection;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttributes(Ljava/nio/file/Path;Z)Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "visit(Ljava/nio/file/Path;ZZ)Ljava/nio/file/FileTreeWalker$Event;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wouldLoop(Ljava/nio/file/Path;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/nio/file/FileTreeWalker$Event;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pop()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipRemainingSiblings()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "walk(Ljava/nio/file/Path;)Ljava/nio/file/FileTreeWalker$Event;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/FileVisitOption;": {"fields": {"$VALUES:[Ljava/nio/file/FileVisitOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FOLLOW_LINKS:Ljava/nio/file/FileVisitOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/FileVisitOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/FileVisitOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileVisitResult;": {"fields": {"$VALUES:[Ljava/nio/file/FileVisitResult;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONTINUE:Ljava/nio/file/FileVisitResult;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SKIP_SIBLINGS:Ljava/nio/file/FileVisitResult;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SKIP_SUBTREE:Ljava/nio/file/FileVisitResult;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TERMINATE:Ljava/nio/file/FileVisitResult;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/FileVisitor;": {"fields": {}, "methods": {"postVisitDirectory(Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "preVisitDirectory(Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "visitFile(Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "visitFileFailed(Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/nio/file/FileTreeIterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/FileTreeIterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$$ExternalSyntheticLambda4;": {"fields": {"f$0:Ljava/io/Closeable;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Closeable;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Files$1;": {"fields": {"val$matcher:Ljava/nio/file/PathMatcher;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/PathMatcher;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$2;": {"fields": {"val$delegate:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$3;": {"fields": {"$SwitchMap$java$nio$file$FileTreeWalker$EventType:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$AcceptAllFilter;": {"fields": {"FILTER:Ljava/nio/file/Files$AcceptAllFilter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$FileTypeDetectors$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$FileTypeDetectors$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files$FileTypeDetectors;": {"fields": {"defaultFileTypeDetector:Ljava/nio/file/spi/FileTypeDetector;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "installeDetectors:Ljava/util/List;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createDefaultFileTypeDetector()Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadInstalledDetectors()Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/Files;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BUFFER_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asUncheckedRunnable(Ljava/io/Closeable;)Ljava/lang/Runnable;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copy(Ljava/io/InputStream;Ljava/io/OutputStream;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copy(Ljava/io/InputStream;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)J": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copy(Ljava/nio/file/Path;Ljava/io/OutputStream;)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copy(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createAndCheckIsDirectory(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createDirectories(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createDirectory(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createFile(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createLink(Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSymbolicLink(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempDirectory(Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempDirectory(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempFile(Ljava/lang/String;Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createTempFile(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(Ljava/nio/file/Path;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteIfExists(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exists(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "find(Ljava/nio/file/Path;ILjava/util/function/BiPredicate;[Ljava/nio/file/FileVisitOption;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "followLinks([Ljava/nio/file/LinkOption;)Z": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttribute(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/lang/Object;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStore(Ljava/nio/file/Path;)Ljava/nio/file/FileStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastModifiedTime(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOwner(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPosixFilePermissions(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/util/Set;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAccessible(Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)Z": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirectory(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isExecutable(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHidden(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadable(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegularFile(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSameFile(Ljava/nio/file/Path;Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSymbolicLink(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWritable(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$asUncheckedRunnable$0(Ljava/io/Closeable;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$find$2(Ljava/util/function/BiPredicate;Ljava/nio/file/FileTreeWalker$Event;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$find$3(Ljava/nio/file/FileTreeWalker$Event;)Ljava/nio/file/Path;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$walk$1(Ljava/nio/file/FileTreeWalker$Event;)Ljava/nio/file/Path;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lines(Ljava/nio/file/Path;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lines(Ljava/nio/file/Path;Ljava/nio/charset/Charset;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/nio/file/Path;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBufferedReader(Ljava/nio/file/Path;)Ljava/io/BufferedReader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBufferedReader(Ljava/nio/file/Path;Ljava/nio/charset/Charset;)Ljava/io/BufferedReader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBufferedWriter(Ljava/nio/file/Path;Ljava/nio/charset/Charset;[Ljava/nio/file/OpenOption;)Ljava/io/BufferedWriter;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBufferedWriter(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/BufferedWriter;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;)Ljava/nio/file/DirectoryStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/DirectoryStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInputStream(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/InputStream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newOutputStream(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/OutputStream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notExists(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "probeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "provider(Ljava/nio/file/Path;)Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read(Ljava/io/InputStream;I)[B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readAllBytes(Ljava/nio/file/Path;)[B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAllLines(Ljava/nio/file/Path;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAllLines(Ljava/nio/file/Path;Ljava/nio/charset/Charset;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSymbolicLink(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAttribute(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLastModifiedTime(Ljava/nio/file/Path;Ljava/nio/file/attribute/FileTime;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOwner(Ljava/nio/file/Path;Ljava/nio/file/attribute/UserPrincipal;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPosixFilePermissions(Ljava/nio/file/Path;Ljava/util/Set;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size(Ljava/nio/file/Path;)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "walk(Ljava/nio/file/Path;I[Ljava/nio/file/FileVisitOption;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "walk(Ljava/nio/file/Path;[Ljava/nio/file/FileVisitOption;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "walkFileTree(Ljava/nio/file/Path;Ljava/nio/file/FileVisitor;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "walkFileTree(Ljava/nio/file/Path;Ljava/util/Set;ILjava/nio/file/FileVisitor;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/file/Path;Ljava/lang/Iterable;Ljava/nio/charset/Charset;[Ljava/nio/file/OpenOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/file/Path;Ljava/lang/Iterable;[Ljava/nio/file/OpenOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/file/Path;[B[Ljava/nio/file/OpenOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/InvalidPathException;": {"fields": {"serialVersionUID:J": {"value": "0x3c72fc8164703219L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "input:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInput()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReason()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/LinkOption;": {"fields": {"$VALUES:[Ljava/nio/file/LinkOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOFOLLOW_LINKS:Ljava/nio/file/LinkOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/LinkOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/LinkOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/LinkPermission;": {"fields": {"serialVersionUID:J": {"value": "-0x140135bfd57fbbe4L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkName(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/NoSuchFileException;": {"fields": {"serialVersionUID:J": {"value": "-0x134b4f010b32857bL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/NotDirectoryException;": {"fields": {"serialVersionUID:J": {"value": "-0x7d0f20c907831c87L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/NotLinkException;": {"fields": {"serialVersionUID:J": {"value": "-0x564c834ac5fc785L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/OpenOption;": {"fields": {}, "methods": {}}, "Ljava/nio/file/Path;": {"fields": {}, "methods": {"compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/file/Path;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "endsWith(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "endsWith(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileName()Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileSystem()Ljava/nio/file/FileSystem;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName(I)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNameCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoot()Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAbsolute()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalize()Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "relativize(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveSibling(Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveSibling(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWith(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWith(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subpath(II)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toAbsolutePath()Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFile()Ljava/io/File;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toRealPath([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUri()Ljava/net/URI;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/PathMatcher;": {"fields": {}, "methods": {"matches(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Paths;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/net/URI;)Ljava/nio/file/Path;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ProviderMismatchException;": {"fields": {"serialVersionUID:J": {"value": "0x45430d587bc7bdf2L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ProviderNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "-0x1a17256abd4926a2L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/ReadOnlyFileSystemException;": {"fields": {"serialVersionUID:J": {"value": "-0x5eae11616aff295dL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/SecureDirectoryStream;": {"fields": {}, "methods": {"deleteDirectory(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteFile(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/lang/Class;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/lang/Object;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/lang/Object;Ljava/nio/file/SecureDirectoryStream;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/lang/Object;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/lang/Object;[Ljava/nio/file/LinkOption;)Ljava/nio/file/SecureDirectoryStream;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/SimpleFileVisitor;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "postVisitDirectory(Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "preVisitDirectory(Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "visitFile(Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "visitFileFailed(Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/StandardCopyOption;": {"fields": {"$VALUES:[Ljava/nio/file/StandardCopyOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATOMIC_MOVE:Ljava/nio/file/StandardCopyOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COPY_ATTRIBUTES:Ljava/nio/file/StandardCopyOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REPLACE_EXISTING:Ljava/nio/file/StandardCopyOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/StandardCopyOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/StandardCopyOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/StandardOpenOption;": {"fields": {"$VALUES:[Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "APPEND:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CREATE:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CREATE_NEW:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DELETE_ON_CLOSE:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DSYNC:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPARSE:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYNC:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRUNCATE_EXISTING:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE:Ljava/nio/file/StandardOpenOption;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/StandardOpenOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/StandardOpenOption;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/StandardWatchEventKinds$StdWatchEventKind;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/StandardWatchEventKinds;": {"fields": {"ENTRY_CREATE:Ljava/nio/file/WatchEvent$Kind;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENTRY_DELETE:Ljava/nio/file/WatchEvent$Kind;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENTRY_MODIFY:Ljava/nio/file/WatchEvent$Kind;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OVERFLOW:Ljava/nio/file/WatchEvent$Kind;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/TempFileHelper$PosixPermissions;": {"fields": {"dirPermissions:Ljava/nio/file/attribute/FileAttribute;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filePermissions:Ljava/nio/file/attribute/FileAttribute;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/TempFileHelper;": {"fields": {"isPosix:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "random:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpdir:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;Z[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createTempDirectory(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createTempFile(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "generatePath(Ljava/lang/String;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/WatchEvent$Kind;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/WatchEvent$Modifier;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/WatchEvent;": {"fields": {}, "methods": {"context()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "kind()Ljava/nio/file/WatchEvent$Kind;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/WatchKey;": {"fields": {}, "methods": {"cancel()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollEvents()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "watchable()Ljava/nio/file/Watchable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/WatchService;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/nio/file/WatchKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/nio/file/WatchKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/Watchable;": {"fields": {}, "methods": {"register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclEntry$Builder-IA;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/AclEntry$Builder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flags:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "perms:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "who:Ljava/nio/file/attribute/UserPrincipal;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/attribute/AclEntryType;Ljava/nio/file/attribute/UserPrincipal;Ljava/util/Set;Ljava/util/Set;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/nio/file/attribute/AclEntryType;Ljava/nio/file/attribute/UserPrincipal;Ljava/util/Set;Ljava/util/Set;Ljava/nio/file/attribute/AclEntry$Builder-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkSet(Ljava/util/Set;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/nio/file/attribute/AclEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFlags(Ljava/util/Set;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFlags([Ljava/nio/file/attribute/AclEntryFlag;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPermissions(Ljava/util/Set;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPermissions([Ljava/nio/file/attribute/AclEntryPermission;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPrincipal(Ljava/nio/file/attribute/UserPrincipal;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setType(Ljava/nio/file/attribute/AclEntryType;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclEntry-IA;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/AclEntry;": {"fields": {"flags:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "perms:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "who:Ljava/nio/file/attribute/UserPrincipal;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/attribute/AclEntryType;Ljava/nio/file/attribute/UserPrincipal;Ljava/util/Set;Ljava/util/Set;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/nio/file/attribute/AclEntryType;Ljava/nio/file/attribute/UserPrincipal;Ljava/util/Set;Ljava/util/Set;Ljava/nio/file/attribute/AclEntry-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash(ILjava/lang/Object;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newBuilder()Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBuilder(Ljava/nio/file/attribute/AclEntry;)Ljava/nio/file/attribute/AclEntry$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flags()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permissions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "principal()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/nio/file/attribute/AclEntryType;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclEntryFlag;": {"fields": {"$VALUES:[Ljava/nio/file/attribute/AclEntryFlag;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIRECTORY_INHERIT:Ljava/nio/file/attribute/AclEntryFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FILE_INHERIT:Ljava/nio/file/attribute/AclEntryFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INHERIT_ONLY:Ljava/nio/file/attribute/AclEntryFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_PROPAGATE_INHERIT:Ljava/nio/file/attribute/AclEntryFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/attribute/AclEntryFlag;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/attribute/AclEntryFlag;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclEntryPermission;": {"fields": {"$VALUES:[Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ADD_FILE:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ADD_SUBDIRECTORY:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "APPEND_DATA:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DELETE:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DELETE_CHILD:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXECUTE:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LIST_DIRECTORY:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_ACL:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_ATTRIBUTES:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_DATA:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READ_NAMED_ATTRS:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYNCHRONIZE:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_ACL:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_ATTRIBUTES:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_DATA:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_NAMED_ATTRS:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_OWNER:Ljava/nio/file/attribute/AclEntryPermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/attribute/AclEntryPermission;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/attribute/AclEntryPermission;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclEntryType;": {"fields": {"$VALUES:[Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALARM:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALLOW:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AUDIT:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DENY:Ljava/nio/file/attribute/AclEntryType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/attribute/AclEntryType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/attribute/AclEntryType;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AclFileAttributeView;": {"fields": {}, "methods": {"getAcl()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAcl(Ljava/util/List;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/AttributeView;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/BasicFileAttributeView;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimes(Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/BasicFileAttributes;": {"fields": {}, "methods": {"creationTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fileKey()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirectory()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOther()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegularFile()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSymbolicLink()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastAccessTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastModifiedTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/DosFileAttributeView;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/DosFileAttributes;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setArchive(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHidden(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSystem(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/DosFileAttributes;": {"fields": {}, "methods": {"isArchive()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHidden()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSystem()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/FileAttribute;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/FileAttributeView;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/FileOwnerAttributeView;": {"fields": {}, "methods": {"getOwner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOwner(Ljava/nio/file/attribute/UserPrincipal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/FileTime;": {"fields": {"DAYS_PER_10000_YEARS:J": {"value": "0x37bb49L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOURS_PER_DAY:J": {"value": "0x18L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_SECOND:J": {"value": "0x701cd2fa9578ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MICROS_PER_SECOND:J": {"value": "0xf4240L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MILLIS_PER_SECOND:J": {"value": "0x3e8L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINUTES_PER_HOUR:J": {"value": "0x3cL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_SECOND:J": {"value": "-0x701cefeb9bec00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_MICRO:I": {"value": "0x3e8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_MILLI:I": {"value": "0xf4240", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_SECOND:J": {"value": "0x3b9aca00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_0000_TO_1970:J": {"value": "0xe79747c00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_10000_YEARS:J": {"value": "0x497968bd80L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_DAY:J": {"value": "0x15180L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_HOUR:J": {"value": "0xe10L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_MINUTE:J": {"value": "0x3cL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "instant:Ljava/time/Instant;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unit:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueAsString:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/concurrent/TimeUnit;Ljava/time/Instant;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/lang/StringBuilder;II)Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(JLjava/util/concurrent/TimeUnit;)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "from(Ljava/time/Instant;)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fromMillis(J)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scale(JJJ)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toDays()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toExcessNanos(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/file/attribute/FileTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "to(Ljava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toInstant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMillis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/FileTime$1;": {"fields": {"$SwitchMap$java$util$concurrent$TimeUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/attribute/FileStoreAttributeView;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/GroupPrincipal;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/PosixFileAttributes;": {"fields": {}, "methods": {"group()Ljava/nio/file/attribute/GroupPrincipal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "owner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permissions()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/PosixFilePermission;": {"fields": {"$VALUES:[Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GROUP_EXECUTE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GROUP_READ:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GROUP_WRITE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHERS_EXECUTE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHERS_READ:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHERS_WRITE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OWNER_EXECUTE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OWNER_READ:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OWNER_WRITE:Ljava/nio/file/attribute/PosixFilePermission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/nio/file/attribute/PosixFilePermission;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/nio/file/attribute/PosixFilePermission;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/PosixFileAttributeView;": {"fields": {}, "methods": {"name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/PosixFileAttributes;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGroup(Ljava/nio/file/attribute/GroupPrincipal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPermissions(Ljava/util/Set;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/PosixFilePermissions$1;": {"fields": {"val$value:Ljava/util/Set;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/attribute/PosixFilePermissions;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asFileAttribute(Ljava/util/Set;)Ljava/nio/file/attribute/FileAttribute;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fromString(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isR(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSet(CC)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isW(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isX(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString(Ljava/util/Set;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBits(Ljava/lang/StringBuilder;ZZZ)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/nio/file/attribute/UserDefinedFileAttributeView;": {"fields": {}, "methods": {"delete(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/lang/String;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/UserPrincipal;": {"fields": {}, "methods": {}}, "Ljava/nio/file/attribute/UserPrincipalLookupService;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupPrincipalByGroupName(Ljava/lang/String;)Ljava/nio/file/attribute/GroupPrincipal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupPrincipalByName(Ljava/lang/String;)Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/attribute/UserPrincipalNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "-0x4a83873fd8ce0540L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/spi/FileSystemProvider$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/nio/file/spi/FileSystemProvider;": {"fields": {"installedProviders:Ljava/util/List;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadingProviders:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smloadInstalledProviders()Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "installedProviders()Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadInstalledProviders()Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkAccess(Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copy(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createDirectory(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createLink(Ljava/nio/file/Path;Ljava/nio/file/Path;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSymbolicLink(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(Ljava/nio/file/Path;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteIfExists(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStore(Ljava/nio/file/Path;)Ljava/nio/file/FileStore;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileSystem(Ljava/net/URI;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPath(Ljava/net/URI;)Ljava/nio/file/Path;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScheme()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHidden(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSameFile(Ljava/nio/file/Path;Ljava/nio/file/Path;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newAsynchronousFileChannel(Ljava/nio/file/Path;Ljava/util/Set;Ljava/util/concurrent/ExecutorService;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/nio/file/Path;Ljava/util/Map;)Ljava/nio/file/FileSystem;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInputStream(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/InputStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newOutputStream(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/OutputStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map;": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSymbolicLink(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAttribute(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/nio/file/spi/FileTypeDetector;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "probeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AccessControlContext;": {"fields": {}, "methods": {"(Ljava/security/AccessControlContext;Ljava/security/DomainCombiner;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/security/ProtectionDomain;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDomainCombiner()Ljava/security/DomainCombiner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AccessControlException;": {"fields": {"serialVersionUID:J": {"value": "0x474ea5094463b577L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "perm:Ljava/security/Permission;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/security/Permission;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AccessController;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission(Ljava/security/Permission;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivileged(Ljava/security/PrivilegedAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivileged(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivileged(Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivilegedWithCombiner(Ljava/security/PrivilegedAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doPrivilegedWithCombiner(Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContext()Ljava/security/AccessControlContext;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AlgorithmConstraints;": {"fields": {}, "methods": {"permits(Ljava/util/Set;Ljava/lang/String;Ljava/security/AlgorithmParameters;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permits(Ljava/util/Set;Ljava/lang/String;Ljava/security/Key;Ljava/security/AlgorithmParameters;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permits(Ljava/util/Set;Ljava/security/Key;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AlgorithmParameterGenerator;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "paramGenSpi:Ljava/security/AlgorithmParameterGeneratorSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/AlgorithmParameterGeneratorSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameterGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AlgorithmParameterGeneratorSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AlgorithmParameters;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "paramSpi:Ljava/security/AlgorithmParametersSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/AlgorithmParametersSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded(Ljava/lang/String;)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterSpec(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init([BLjava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AlgorithmParametersSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetEncoded()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetEncoded(Ljava/lang/String;)[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameterSpec(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit([B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit([BLjava/lang/String;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineToString()Ljava/lang/String;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AllPermission;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/AuthProvider;": {"fields": {}, "methods": {"(Ljava/lang/String;DLjava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "login(Ljavax/security/auth/Subject;Ljavax/security/auth/callback/CallbackHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logout()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCallbackHandler(Ljavax/security/auth/callback/CallbackHandler;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/BasicPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Certificate;": {"fields": {}, "methods": {"decode(Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGuarantor()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Z)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/CodeSigner;": {"fields": {"serialVersionUID:J": {"value": "0x5ea2fa66cb219aadL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerCertPath:Ljava/security/cert/CertPath;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timestamp:Ljava/security/Timestamp;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPath;Ljava/security/Timestamp;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignerCertPath()Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp()Ljava/security/Timestamp;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/CodeSource;": {"fields": {"location:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;[Ljava/security/CodeSigner;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/URL;[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocation()Ljava/net/URL;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/CodeSource;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/CryptoPrimitive;": {"fields": {"$VALUES:[Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BLOCK_CIPHER:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_AGREEMENT:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_ENCAPSULATION:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_WRAP:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAC:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MESSAGE_DIGEST:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC_KEY_ENCRYPTION:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECURE_RANDOM:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIGNATURE:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STREAM_CIPHER:Ljava/security/CryptoPrimitive;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/CryptoPrimitive;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/CryptoPrimitive;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/DigestException;": {"fields": {"serialVersionUID:J": {"value": "0x50c9f235117cbc23L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/DigestInputStream;": {"fields": {"digest:Ljava/security/MessageDigest;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "on:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Ljava/security/MessageDigest;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessageDigest()Ljava/security/MessageDigest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "on(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMessageDigest(Ljava/security/MessageDigest;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/DigestOutputStream;": {"fields": {"digest:Ljava/security/MessageDigest;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "on:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;Ljava/security/MessageDigest;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessageDigest()Ljava/security/MessageDigest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "on(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMessageDigest(Ljava/security/MessageDigest;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/DomainCombiner;": {"fields": {}, "methods": {"combine([Ljava/security/ProtectionDomain;[Ljava/security/ProtectionDomain;)[Ljava/security/ProtectionDomain;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/DomainLoadStoreParameter;": {"fields": {"configuration:Ljava/net/URI;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protectionParams:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URI;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConfiguration()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameter()Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParams()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/GeneralSecurityException;": {"fields": {"serialVersionUID:J": {"value": "0xc6af626b2b015a5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Guard;": {"fields": {}, "methods": {"checkGuard(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/GuardedObject;": {"fields": {"serialVersionUID:J": {"value": "-0x48b9d198f0d259c4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "guard:Ljava/security/Guard;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "object:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/security/Guard;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getObject()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Identity;": {"fields": {"serialVersionUID:J": {"value": "0x321904f09f5e92d3L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "certificates:Ljava/util/Vector;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "info:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scope:Ljava/security/IdentityScope;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/security/IdentityScope;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyEquals(Ljava/security/PublicKey;Ljava/security/PublicKey;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addCertificate(Ljava/security/Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "certificates()[Ljava/security/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fullName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInfo()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScope()Ljava/security/IdentityScope;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identityEquals(Ljava/security/Identity;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printCertificates()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printKeys()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeCertificate(Ljava/security/Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInfo(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPublicKey(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Z)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/IdentityScope$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/IdentityScope;": {"fields": {"scope:Ljava/security/IdentityScope;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x206fec0f17658ffeL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/security/IdentityScope;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemScope()Ljava/security/IdentityScope;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initializeSystemScope()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSystemScope(Ljava/security/IdentityScope;)V": {"other": [".method", "protected", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIdentity(Ljava/security/Identity;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentity(Ljava/lang/String;)Ljava/security/Identity;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentity(Ljava/security/Principal;)Ljava/security/Identity;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentity(Ljava/security/PublicKey;)Ljava/security/Identity;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "identities()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIdentity(Ljava/security/Identity;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/InvalidAlgorithmParameterException;": {"fields": {"serialVersionUID:J": {"value": "0x27c15c46e25bae70L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/InvalidKeyException;": {"fields": {"serialVersionUID:J": {"value": "0x4f15114bc2a9d3c8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/InvalidParameterException;": {"fields": {"serialVersionUID:J": {"value": "-0xbe81dd6b0831860L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Key;": {"fields": {"serialVersionUID:J": {"value": "0x5ba3eee69414eea6L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyException;": {"fields": {"serialVersionUID:J": {"value": "-0x67db5c877e1dc6ecL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyFactory;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceIterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljava/security/KeyFactorySpi;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/security/KeyFactorySpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/KeyFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/KeyFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/KeyFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextSpi(Ljava/security/KeyFactorySpi;)Ljava/security/KeyFactorySpi;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generatePrivate(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generatePublic(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljava/security/Key;Ljava/lang/Class;)Ljava/security/spec/KeySpec;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateKey(Ljava/security/Key;)Ljava/security/Key;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyFactorySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGeneratePrivate(Ljava/security/spec/KeySpec;)Ljava/security/PrivateKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGeneratePublic(Ljava/security/spec/KeySpec;)Ljava/security/PublicKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKeySpec(Ljava/security/Key;Ljava/lang/Class;)Ljava/security/spec/KeySpec;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineTranslateKey(Ljava/security/Key;)Ljava/security/Key;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyManagementException;": {"fields": {"serialVersionUID:J": {"value": "0xd26d0adb8d6a627L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyPair;": {"fields": {"serialVersionUID:J": {"value": "-0x68fcf3c52d32ed6dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "privateKey:Ljava/security/PrivateKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/PublicKey;Ljava/security/PrivateKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivate()Ljava/security/PrivateKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublic()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyPairGenerator$Delegate;": {"fields": {"I_NONE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_PARAMS:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_SIZE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initKeySize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initParams:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initRandom:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initType:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceIterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljava/security/KeyPairGeneratorSpi;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyPairGeneratorSpi;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/jca/GetInstance$Instance;Ljava/util/Iterator;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextSpi(Ljava/security/KeyPairGeneratorSpi;Z)Ljava/security/KeyPairGeneratorSpi;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disableFailover()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateKeyPair()Ljava/security/KeyPair;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(ILjava/security/SecureRandom;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyPairGenerator;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/KeyPairGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/KeyPairGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/KeyPairGenerator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Lsun/security/jca/GetInstance$Instance;Ljava/lang/String;)Ljava/security/KeyPairGenerator;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "disableFailover()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "genKeyPair()Ljava/security/KeyPair;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateKeyPair()Ljava/security/KeyPair;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(ILjava/security/SecureRandom;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyPairGeneratorSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateKeyPair()Ljava/security/KeyPair;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(ILjava/security/SecureRandom;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyRep$Type;": {"fields": {"$VALUES:[Ljava/security/KeyRep$Type;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVATE:Ljava/security/KeyRep$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC:Ljava/security/KeyRep$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECRET:Ljava/security/KeyRep$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/KeyRep$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/KeyRep$Type;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyRep;": {"fields": {"PKCS8:Ljava/lang/String;": {"value": "\"PKCS#8\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RAW:Ljava/lang/String;": {"value": "\"RAW\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "X509:Ljava/lang/String;": {"value": "\"X.509\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x4206b04c77655abdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/security/KeyRep$Type;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyRep$Type;Ljava/lang/String;Ljava/lang/String;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/KeyStore$Builder$1;": {"fields": {"getCalled:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$keyStore:Ljava/security/KeyStore;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$protectionParameter:Ljava/security/KeyStore$ProtectionParameter;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore;Ljava/security/KeyStore$ProtectionParameter;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeyStore()Ljava/security/KeyStore;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameter(Ljava/lang/String;)Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$Builder$2$1;": {"fields": {"this$0:Ljava/security/KeyStore$Builder$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore$Builder$2;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/security/KeyStore;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/KeyStore$Builder$2;": {"fields": {"action:Ljava/security/PrivilegedExceptionAction;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalled:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oldException:Ljava/io/IOException;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$context:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$protection:Ljava/security/KeyStore$ProtectionParameter;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$provider:Ljava/security/Provider;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$type:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fputgetCalled(Ljava/security/KeyStore$Builder$2;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputoldException(Ljava/security/KeyStore$Builder$2;Ljava/io/IOException;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/Provider;Ljava/lang/String;Ljava/security/KeyStore$ProtectionParameter;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeyStore()Ljava/security/KeyStore;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameter(Ljava/lang/String;)Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$Builder$FileBuilder$1;": {"fields": {"this$0:Ljava/security/KeyStore$Builder$FileBuilder;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore$Builder$FileBuilder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/security/KeyStore;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run0()Ljava/security/KeyStore;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/KeyStore$Builder$FileBuilder;": {"fields": {"context:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "file:Ljava/io/File;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyProtection:Ljava/security/KeyStore$ProtectionParameter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyStore:Ljava/security/KeyStore;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oldException:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protection:Ljava/security/KeyStore$ProtectionParameter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetfile(Ljava/security/KeyStore$Builder$FileBuilder;)Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetprotection(Ljava/security/KeyStore$Builder$FileBuilder;)Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetprovider(Ljava/security/KeyStore$Builder$FileBuilder;)Ljava/security/Provider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettype(Ljava/security/KeyStore$Builder$FileBuilder;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputkeyProtection(Ljava/security/KeyStore$Builder$FileBuilder;Ljava/security/KeyStore$ProtectionParameter;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/security/Provider;Ljava/io/File;Ljava/security/KeyStore$ProtectionParameter;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKeyStore()Ljava/security/KeyStore;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameter(Ljava/lang/String;)Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$Builder;": {"fields": {"MAX_CALLBACK_TRIES:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/io/File;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/lang/String;Ljava/security/Provider;Ljava/io/File;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/lang/String;Ljava/security/Provider;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/security/KeyStore;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyStore()Ljava/security/KeyStore;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameter(Ljava/lang/String;)Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$CallbackHandlerProtection;": {"fields": {"handler:Ljavax/security/auth/callback/CallbackHandler;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/callback/CallbackHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCallbackHandler()Ljavax/security/auth/callback/CallbackHandler;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$Entry$Attribute;": {"fields": {}, "methods": {"getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$Entry;": {"fields": {}, "methods": {"getAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$LoadStoreParameter;": {"fields": {}, "methods": {"getProtectionParameter()Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$PasswordProtection;": {"fields": {"destroyed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "password:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protectionAlgorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protectionParameters:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CLjava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "destroy()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()[C": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtectionParameters()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDestroyed()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$PrivateKeyEntry;": {"fields": {"attributes:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chain:[Ljava/security/cert/Certificate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privKey:Ljava/security/PrivateKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/PrivateKey;[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/PrivateKey;[Ljava/security/cert/Certificate;Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificate()Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateChain()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateKey()Ljava/security/PrivateKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$ProtectionParameter;": {"fields": {}, "methods": {}}, "Ljava/security/KeyStore$SecretKeyEntry;": {"fields": {"attributes:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sKey:Ljavax/crypto/SecretKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/SecretKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/crypto/SecretKey;Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecretKey()Ljavax/crypto/SecretKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$SimpleLoadStoreParameter;": {"fields": {"protection:Ljava/security/KeyStore$ProtectionParameter;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore$ProtectionParameter;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProtectionParameter()Ljava/security/KeyStore$ProtectionParameter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore$TrustedCertificateEntry;": {"fields": {"attributes:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cert:Ljava/security/cert/Certificate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/cert/Certificate;Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrustedCertificate()Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStoreException;": {"fields": {"serialVersionUID:J": {"value": "-0xf88bdc937b6e42eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStore;": {"fields": {"KEYSTORE_TYPE:Ljava/lang/String;": {"value": "\"keystore.type\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "kdebug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyStoreSpi:Ljava/security/KeyStoreSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetinitialized(Ljava/security/KeyStore;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/KeyStoreSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultType()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/io/File;Ljava/security/KeyStore$LoadStoreParameter;)Ljava/security/KeyStore;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/io/File;[C)Ljava/security/KeyStore;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/io/File;[CLjava/security/KeyStore$LoadStoreParameter;Z)Ljava/security/KeyStore;": {"other": [".method", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Ljava/security/KeyStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/KeyStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/KeyStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "aliases()Ljava/util/Enumeration;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAlias(Ljava/lang/String;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteEntry(Ljava/lang/String;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entryInstanceOf(Ljava/lang/String;Ljava/lang/Class;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificate(Ljava/lang/String;)Ljava/security/cert/Certificate;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateAlias(Ljava/security/cert/Certificate;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateChain(Ljava/lang/String;)[Ljava/security/cert/Certificate;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCreationDate(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntry(Ljava/lang/String;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey(Ljava/lang/String;[C)Ljava/security/Key;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCertificateEntry(Ljava/lang/String;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isKeyEntry(Ljava/lang/String;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/io/InputStream;[C)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/security/KeyStore$LoadStoreParameter;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertificateEntry(Ljava/lang/String;Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEntry(Ljava/lang/String;Ljava/security/KeyStore$Entry;Ljava/security/KeyStore$ProtectionParameter;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setKeyEntry(Ljava/lang/String;Ljava/security/Key;[C[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setKeyEntry(Ljava/lang/String;[B[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "store(Ljava/io/OutputStream;[C)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "store(Ljava/security/KeyStore$LoadStoreParameter;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/KeyStoreSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineAliases()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineContainsAlias(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDeleteEntry(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineEntryInstanceOf(Ljava/lang/String;Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertificate(Ljava/lang/String;)Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertificateAlias(Ljava/security/cert/Certificate;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertificateChain(Ljava/lang/String;)[Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCreationDate(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetEntry(Ljava/lang/String;Ljava/security/KeyStore$ProtectionParameter;)Ljava/security/KeyStore$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKey(Ljava/lang/String;[C)Ljava/security/Key;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineIsCertificateEntry(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineIsKeyEntry(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineLoad(Ljava/io/InputStream;Ljava/security/KeyStore$LoadStoreParameter;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "engineLoad(Ljava/io/InputStream;[C)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineLoad(Ljava/security/KeyStore$LoadStoreParameter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineProbe(Ljava/io/InputStream;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetCertificateEntry(Ljava/lang/String;Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetEntry(Ljava/lang/String;Ljava/security/KeyStore$Entry;Ljava/security/KeyStore$ProtectionParameter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetKeyEntry(Ljava/lang/String;Ljava/security/Key;[C[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetKeyEntry(Ljava/lang/String;[B[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineStore(Ljava/io/OutputStream;[C)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineStore(Ljava/security/KeyStore$LoadStoreParameter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/MessageDigest$Delegate;": {"fields": {"digestSpi:Ljava/security/MessageDigestSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/MessageDigestSpi;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDigest([BII)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDigest()[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetDigestLength()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineReset()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/MessageDigest;": {"fields": {"INITIAL:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IN_PROGRESS:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetalgorithm(Ljava/security/MessageDigest;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetprovider(Ljava/security/MessageDigest;)Ljava/security/Provider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetstate(Ljava/security/MessageDigest;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputprovider(Ljava/security/MessageDigest;Ljava/security/Provider;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputstate(Ljava/security/MessageDigest;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/MessageDigest;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/MessageDigest;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/MessageDigest;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProviderName()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEqual([B[B)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digest([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digest()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "digest([B)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDigestLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/MessageDigestSpi;": {"fields": {"tempArray:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDigest([BII)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDigest()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetDigestLength()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineReset()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/NoSuchAlgorithmException;": {"fields": {"serialVersionUID:J": {"value": "-0x674e36ccc64faa42L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/NoSuchProviderException;": {"fields": {"serialVersionUID:J": {"value": "0x75cbd4abb73cabcaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PKCS12Attribute;": {"fields": {"COLON_SEPARATED_HEX_PAIRS:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashValue:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Lsun/security/util/ObjectIdentifier;[Ljava/lang/String;)[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse([B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Permission;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkGuard(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newPermissionCollection()Ljava/security/PermissionCollection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PermissionCollection;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/security/Permission;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Permissions;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Policy$Parameters;": {"fields": {}, "methods": {}}, "Ljava/security/Policy$UnsupportedEmptyCollection;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Policy;": {"fields": {"UNSUPPORTED_EMPTY_COLLECTION:Ljava/security/PermissionCollection;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Policy$Parameters;)Ljava/security/Policy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Policy$Parameters;Ljava/lang/String;)Ljava/security/Policy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Policy$Parameters;Ljava/security/Provider;)Ljava/security/Policy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicy()Ljava/security/Policy;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPolicy(Ljava/security/Policy;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()Ljava/security/Policy$Parameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions(Ljava/security/ProtectionDomain;)Ljava/security/PermissionCollection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/ProtectionDomain;Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refresh()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PolicySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetPermissions(Ljava/security/ProtectionDomain;)Ljava/security/PermissionCollection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineImplies(Ljava/security/ProtectionDomain;Ljava/security/Permission;)Z": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineRefresh()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Principal;": {"fields": {}, "methods": {"equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljavax/security/auth/Subject;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PrivateKey;": {"fields": {"serialVersionUID:J": {"value": "0x53bd3b559a12c6d6L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {}}, "Ljava/security/PrivilegedAction;": {"fields": {}, "methods": {"run()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PrivilegedActionException;": {"fields": {"serialVersionUID:J": {"value": "0x418f53f65211f5baL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "exception:Ljava/lang/Exception;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Exception;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getException()Ljava/lang/Exception;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PrivilegedExceptionAction;": {"fields": {}, "methods": {"run()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/ProtectionDomain;": {"fields": {}, "methods": {"(Ljava/security/CodeSource;Ljava/security/PermissionCollection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/CodeSource;Ljava/security/PermissionCollection;Ljava/lang/ClassLoader;[Ljava/security/Principal;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodeSource()Ljava/security/CodeSource;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions()Ljava/security/PermissionCollection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipals()[Ljava/security/Principal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Provider$EngineDescription;": {"fields": {"constructorParameterClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constructorParameterClassName:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supportsParameter:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;ZLjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getConstructorParameterClass()Ljava/lang/Class;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/security/Provider$Service-IA;": {"fields": {}, "methods": {}}, "Ljava/security/Provider$Service;": {"fields": {"CLASS0:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "aliases:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "attributes:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "className:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "classRef:Ljava/lang/ref/Reference;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasKeyAttributes:Ljava/lang/Boolean;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "registered:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supportedClasses:[Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supportedFormats:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetattributes(Ljava/security/Provider$Service;)Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputalgorithm(Ljava/security/Provider$Service;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputclassName(Ljava/security/Provider$Service;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputtype(Ljava/security/Provider$Service;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$maddAlias(Ljava/security/Provider$Service;Ljava/lang/String;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetAliases(Ljava/security/Provider$Service;)Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$misValid(Ljava/security/Provider$Service;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/Provider;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/security/Provider;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/Provider;Ljava/security/Provider$Service-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addAlias(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAliases()Ljava/util/List;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImplClass()Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKeyClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasKeyAttributes()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstanceGeneric(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supportsKeyClass(Ljava/security/Key;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supportsKeyFormat(Ljava/security/Key;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAttribute(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttribute(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClassName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstance(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsParameter(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Provider$ServiceKey-IA;": {"fields": {}, "methods": {}}, "Ljava/security/Provider$ServiceKey;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalAlgorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;ZLjava/security/Provider$ServiceKey-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matches(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/security/Provider$UString;": {"fields": {"lowerString:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "string:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Provider;": {"fields": {"ALIAS_LENGTH:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ALIAS_PREFIX:Ljava/lang/String;": {"value": "\"Alg.Alias.\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ALIAS_PREFIX_LOWER:Ljava/lang/String;": {"value": "\"alg.alias.\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "knownEngines:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "previousKey:Ljava/security/Provider$ServiceKey;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x3ba590b26fa1505bL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySetCallCount:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "info:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "legacyChanged:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "legacyMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "legacyStrings:Ljava/util/Map;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "registered:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceSet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "servicesChanged:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetknownEngines()Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetEngineName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;DLjava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addEngine(Ljava/lang/String;ZLjava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "check(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInitialized()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkLegacy(Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureLegacyParsed()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEngineName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTypeAndAlgorithm(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implClear()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implCompute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implComputeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implComputeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implMerge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implPut(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implPutAll(Ljava/util/Map;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implPutIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implRemove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implRemove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implRemoveService(Ljava/security/Provider$Service;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implReplace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implReplace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "implReplaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseLegacyPut(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putId()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putPropertyStrings(Ljava/security/Provider$Service;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "removeInvalidServices(Ljava/util/Map;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removePropertyStrings(Ljava/security/Provider$Service;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInfo()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getService(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServices()Ljava/util/Set;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegistered()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/io/InputStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putService(Ljava/security/Provider$Service;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeService(Ljava/security/Provider$Service;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRegistered()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setUnregistered()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "warmUpServiceProvision()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}}}, "Ljava/security/ProviderException;": {"fields": {"serialVersionUID:J": {"value": "0x48f1258cc7abfb8aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/PublicKey;": {"fields": {"serialVersionUID:J": {"value": "0x63bebf5f40c219e0L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {}}, "Ljava/security/SecureClassLoader;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pdcache:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/ClassLoader;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProtectionDomain(Ljava/security/CodeSource;)Ljava/security/ProtectionDomain;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defineClass(Ljava/lang/String;Ljava/nio/ByteBuffer;Ljava/security/CodeSource;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defineClass(Ljava/lang/String;[BIILjava/security/CodeSource;)Ljava/lang/Class;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions(Ljava/security/CodeSource;)Ljava/security/PermissionCollection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SecureRandom$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/SecureRandom$StrongPatternHolder;": {"fields": {"pattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetpattern()Ljava/util/regex/Pattern;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/security/SecureRandom;": {"fields": {"seedGenerator:Ljava/security/SecureRandom;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x118d8360a24b4bL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "counter:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digest:Ljava/security/MessageDigest;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "randomBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "randomBytesUsed:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "secureRandomSpi:Ljava/security/SecureRandomSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/SecureRandomSpi;Ljava/security/Provider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/SecureRandomSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultPRNG(Z[B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Ljava/security/SecureRandom;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/SecureRandom;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/SecureRandom;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstanceStrong()Ljava/security/SecureRandom;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrngAlgorithm()Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSeed(I)[B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longToByteArray(J)[B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateSeed(I)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecureRandomSpi()Ljava/security/SecureRandomSpi;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next(I)I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBytes([B)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSeed(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSeed([B)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SecureRandomSpi;": {"fields": {"serialVersionUID:J": {"value": "-0x2985338206ba2b96L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateSeed(I)[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineNextBytes([B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetSeed([B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Security$1;": {"fields": {"val$pa:Z": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/Security$ProviderProperty-IA;": {"fields": {}, "methods": {}}, "Ljava/security/Security$ProviderProperty;": {"fields": {"className:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/security/Security$ProviderProperty-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/Security;": {"fields": {"props:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spiMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addProvider(Ljava/security/Provider;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithmProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithms(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAllQualifyingCandidates(Ljava/lang/String;Ljava/lang/String;[Ljava/security/Provider;)Ljava/util/LinkedHashSet;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFilterComponents(Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImpl(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImpl(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImpl(Ljava/lang/String;Ljava/lang/String;Ljava/security/Provider;)[Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getImpl(Ljava/lang/String;Ljava/lang/String;Ljava/security/Provider;Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider(Ljava/lang/String;)Ljava/security/Provider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProviderProperty(Ljava/lang/String;Ljava/security/Provider;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProviderProperty(Ljava/lang/String;)Ljava/security/Security$ProviderProperty;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProviders()[Ljava/security/Provider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProviders(Ljava/lang/String;)[Ljava/security/Provider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProviders(Ljava/util/Map;)[Ljava/security/Provider;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvidersNotUsingCache(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/security/Provider;)Ljava/util/LinkedHashSet;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSpiClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getVersion()I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "increaseVersion()V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeStatic()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "insertProviderAt(Ljava/security/Provider;I)I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invalidateSMCache(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isConstraintSatisfied(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCriterionSatisfied(Ljava/security/Provider;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isStandardAttr(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeProvider(Ljava/lang/String;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SecurityPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Signature$CipherAdapter;": {"fields": {"cipher:Ljavax/crypto/Cipher;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "data:Ljava/io/ByteArrayOutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/Cipher;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "engineGetParameter(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitVerify(Ljava/security/PublicKey;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetParameter(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSign()[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineVerify([B)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Signature$Delegate;": {"fields": {"I_PRIV:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_PRIV_SR:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_PUB:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "warnCount:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sigSpi:Ljava/security/SignatureSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/security/SignatureSpi;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chooseProvider(ILjava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(Ljava/security/SignatureSpi;ILjava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance(Ljava/security/Provider$Service;)Ljava/security/SignatureSpi;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chooseFirstProvider()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameter(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitVerify(Ljava/security/PublicKey;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetParameter(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetParameter(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSign([BII)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSign()[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineVerify([B)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineVerify([BII)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrentSpi()Ljava/security/SignatureSpi;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Signature;": {"fields": {"RSA_CIPHER:Ljava/lang/String;": {"value": "\"RSA/ECB/PKCS1Padding\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RSA_SIGNATURE:Ljava/lang/String;": {"value": "\"NONEwithRSA\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIGN:I": {"value": "0x2", "other": [".field", "protected", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNINITIALIZED:I": {"value": "0x0", "other": [".field", "protected", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VERIFY:I": {"value": "0x3", "other": [".field", "protected", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rsaIds:Ljava/util/List;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signatureInfo:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"-$$Nest$fgetalgorithm(Ljava/security/Signature;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetrsaIds()Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smisSpi(Ljava/security/Provider$Service;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/Signature;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Signature;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/Signature;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Lsun/security/jca/GetInstance$Instance;Ljava/lang/String;)Ljava/security/Signature;": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getInstanceRSA(Ljava/security/Provider;)Ljava/security/Signature;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSpi(Ljava/security/Provider$Service;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chooseFirstProvider()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrentSpi()Ljava/security/SignatureSpi;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getParameter(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initSign(Ljava/security/PrivateKey;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initSign(Ljava/security/PrivateKey;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initVerify(Ljava/security/PublicKey;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initVerify(Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParameter(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParameter(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sign([BII)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sign()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify([B)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify([BII)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SignatureException;": {"fields": {"serialVersionUID:J": {"value": "0x6838d7805e1e2fd6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SignatureSpi;": {"fields": {"appRandom:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameter(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitSign(Ljava/security/PrivateKey;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInitVerify(Ljava/security/PublicKey;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetParameter(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetParameter(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSign([BII)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSign()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineVerify([B)Z": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineVerify([BII)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/SignedObject;": {"fields": {"serialVersionUID:J": {"value": "0x9ffbd682a3cd5ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "content:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signature:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thealgorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Serializable;Ljava/security/PrivateKey;Ljava/security/Signature;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sign(Ljava/security/PrivateKey;Ljava/security/Signature;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Signature;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Signer$1;": {"fields": {"this$0:Ljava/security/Signer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$pub:Ljava/security/PublicKey;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/Signer;Ljava/security/PublicKey;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/Signer;": {"fields": {"serialVersionUID:J": {"value": "-0x18791541fd710b48L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "privateKey:Ljava/security/PrivateKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/security/IdentityScope;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrivateKey()Ljava/security/PrivateKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "printKeys()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setKeyPair(Ljava/security/KeyPair;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/Timestamp;": {"fields": {"serialVersionUID:J": {"value": "-0x4c5d75ad840d029eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerCertPath:Ljava/security/cert/CertPath;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timestamp:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Date;Ljava/security/cert/CertPath;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignerCertPath()Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/UnrecoverableEntryException;": {"fields": {"serialVersionUID:J": {"value": "-0x3ed3a485dad212c7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/UnrecoverableKeyException;": {"fields": {"serialVersionUID:J": {"value": "0x64f637531e15766dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/UnresolvedPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnresolvedActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnresolvedCerts()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnresolvedName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnresolvedType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/UnresolvedPermissionCollection;": {"fields": {"serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x6396d132a67b4c70L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "perms:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnresolvedPermissions(Ljava/security/Permission;)Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/UnresolvedPermissionCollection$1;": {"fields": {"this$0:Ljava/security/UnresolvedPermissionCollection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$up:Ljava/security/UnresolvedPermission;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/UnresolvedPermissionCollection;Ljava/security/UnresolvedPermission;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apply(Ljava/lang/String;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/acl/Acl;": {"fields": {}, "methods": {"addEntry(Ljava/security/Principal;Ljava/security/acl/AclEntry;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission(Ljava/security/Principal;Ljava/security/acl/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entries()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermissions(Ljava/security/Principal;)Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeEntry(Ljava/security/Principal;Ljava/security/acl/AclEntry;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setName(Ljava/security/Principal;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/AclEntry;": {"fields": {}, "methods": {"addPermission(Ljava/security/acl/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission(Ljava/security/acl/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNegative()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permissions()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePermission(Ljava/security/acl/Permission;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNegativePermissions()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPrincipal(Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/AclNotFoundException;": {"fields": {"serialVersionUID:J": {"value": "0x4ee2ac37819c7a3fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/Group;": {"fields": {}, "methods": {"addMember(Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMember(Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "members()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeMember(Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/LastOwnerException;": {"fields": {"serialVersionUID:J": {"value": "-0x475c0b86d10df707L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/NotOwnerException;": {"fields": {"serialVersionUID:J": {"value": "-0x4d1972dd89cb5c5fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/Owner;": {"fields": {}, "methods": {"addOwner(Ljava/security/Principal;Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteOwner(Ljava/security/Principal;Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOwner(Ljava/security/Principal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/acl/Permission;": {"fields": {}, "methods": {}}, "Ljava/security/cert/CRL;": {"fields": {"type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRevoked(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CRLException;": {"fields": {"serialVersionUID:J": {"value": "-0x5ce874812442b59bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CRLReason;": {"fields": {"$VALUES:[Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AA_COMPROMISE:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AFFILIATION_CHANGED:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CA_COMPROMISE:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CERTIFICATE_HOLD:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CESSATION_OF_OPERATION:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_COMPROMISE:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIVILEGE_WITHDRAWN:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REMOVE_FROM_CRL:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUPERSEDED:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNSPECIFIED:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNUSED:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/cert/CRLReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/cert/CRLReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CRLSelector;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match(Ljava/security/cert/CRL;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPath$CertPathRep;": {"fields": {"serialVersionUID:J": {"value": "0x29d9ae4d46fc6e13L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "data:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathBuilder$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/cert/CertPath;": {"fields": {"serialVersionUID:J": {"value": "0x543789977dd3e5fbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded(Ljava/lang/String;)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncodings()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathBuilder;": {"fields": {"CPB_TYPE:Ljava/lang/String;": {"value": "\"certpathbuilder.type\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "builderSpi:Ljava/security/cert/CertPathBuilderSpi;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPathBuilderSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultType()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/cert/CertPathBuilder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/cert/CertPathBuilder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/cert/CertPathBuilder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build(Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathBuilderResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathBuilderException;": {"fields": {"serialVersionUID:J": {"value": "0x49c7e696ba4607a2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathBuilderResult;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertPath()Ljava/security/cert/CertPath;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathBuilderSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineBuild(Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathBuilderResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathChecker;": {"fields": {}, "methods": {"check(Ljava/security/cert/Certificate;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathHelperImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialize()V": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSetDateAndTime(Ljava/security/cert/X509CRLSelector;Ljava/util/Date;J)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSetPathToNames(Ljava/security/cert/X509CertSelector;Ljava/util/Set;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/cert/CertPathValidator$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/cert/CertPathParameters;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathValidator;": {"fields": {"CPV_TYPE:Ljava/lang/String;": {"value": "\"certpathvalidator.type\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "validatorSpi:Ljava/security/cert/CertPathValidatorSpi;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPathValidatorSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultType()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/cert/CertPathValidator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/cert/CertPathValidator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/cert/CertPathValidator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "validate(Ljava/security/cert/CertPath;Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathValidatorResult;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathValidatorException$Reason;": {"fields": {}, "methods": {}}, "Ljava/security/cert/CertPathValidatorException$BasicReason;": {"fields": {"$VALUES:[Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALGORITHM_CONSTRAINED:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXPIRED:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INVALID_SIGNATURE:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOT_YET_VALID:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REVOKED:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDETERMINED_REVOCATION_STATUS:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNSPECIFIED:Ljava/security/cert/CertPathValidatorException$BasicReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/cert/CertPathValidatorException$BasicReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/cert/CertPathValidatorException$BasicReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathValidatorException;": {"fields": {"serialVersionUID:J": {"value": "-0x2ac9a7e362fbb593L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "certPath:Ljava/security/cert/CertPath;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reason:Ljava/security/cert/CertPathValidatorException$Reason;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;ILjava/security/cert/CertPathValidatorException$Reason;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getCertPath()Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReason()Ljava/security/cert/CertPathValidatorException$Reason;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathValidatorResult;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertPathValidatorSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineValidate(Ljava/security/cert/CertPath;Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathValidatorResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertSelector;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertStore$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/security/cert/CertStore;": {"fields": {"CERTSTORE_TYPE:Ljava/lang/String;": {"value": "\"certstore.type\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "params:Ljava/security/cert/CertStoreParameters;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "storeSpi:Ljava/security/cert/CertStoreSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertStoreSpi;Ljava/security/Provider;Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultType()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)Ljava/security/cert/CertStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/lang/String;)Ljava/security/cert/CertStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/security/Provider;)Ljava/security/cert/CertStore;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleException(Ljava/security/NoSuchAlgorithmException;)Ljava/security/cert/CertStore;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCRLs(Ljava/security/cert/CRLSelector;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertStoreParameters()Ljava/security/cert/CertStoreParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates(Ljava/security/cert/CertSelector;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertStoreParameters;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertStoreException;": {"fields": {"serialVersionUID:J": {"value": "0x213dcd1e71b810fdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/Certificate$CertificateRep;": {"fields": {"serialVersionUID:J": {"value": "-0x76d895623651c3f4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "data:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertStoreSpi;": {"fields": {}, "methods": {"(Ljava/security/cert/CertStoreParameters;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCRLs(Ljava/security/cert/CRLSelector;)Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertificates(Ljava/security/cert/CertSelector;)Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/Certificate;": {"fields": {"serialVersionUID:J": {"value": "-0x31c20b3b0df7f5e5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateEncodingException;": {"fields": {"serialVersionUID:J": {"value": "0x565013cbd61205caL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateException;": {"fields": {"serialVersionUID:J": {"value": "0x2c4e29e6077d2736L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateExpiredException;": {"fields": {"serialVersionUID:J": {"value": "0x7de2aba8816805cbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateFactory;": {"fields": {"certFacSpi:Ljava/security/cert/CertificateFactorySpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertificateFactorySpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/security/cert/CertificateFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljava/security/cert/CertificateFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/cert/CertificateFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCRL(Ljava/io/InputStream;)Ljava/security/cert/CRL;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCRLs(Ljava/io/InputStream;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCertPath(Ljava/io/InputStream;)Ljava/security/cert/CertPath;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCertPath(Ljava/io/InputStream;Ljava/lang/String;)Ljava/security/cert/CertPath;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCertPath(Ljava/util/List;)Ljava/security/cert/CertPath;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCertificate(Ljava/io/InputStream;)Ljava/security/cert/Certificate;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateCertificates(Ljava/io/InputStream;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertPathEncodings()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateParsingException;": {"fields": {"serialVersionUID:J": {"value": "-0x6edf6b75988dc22dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateNotYetValidException;": {"fields": {"serialVersionUID:J": {"value": "0x3c7356120800b0feL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateFactorySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCRL(Ljava/io/InputStream;)Ljava/security/cert/CRL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCRLs(Ljava/io/InputStream;)Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCertPath(Ljava/io/InputStream;)Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCertPath(Ljava/io/InputStream;Ljava/lang/String;)Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCertPath(Ljava/util/List;)Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCertificate(Ljava/io/InputStream;)Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateCertificates(Ljava/io/InputStream;)Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertPathEncodings()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/Extension;": {"fields": {}, "methods": {"encode(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCritical()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CertificateRevokedException;": {"fields": {"serialVersionUID:J": {"value": "0x6ccd4365f915b433L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "authority:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extensions:Ljava/util/Map;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reason:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "revocationDate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Date;Ljava/security/cert/CRLReason;Ljavax/security/auth/x500/X500Principal;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getAuthorityName()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensions()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInvalidityDate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationDate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationReason()Ljava/security/cert/CRLReason;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/CollectionCertStoreParameters;": {"fields": {"coll:Ljava/util/Collection;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCollection()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/LDAPCertStoreParameters;": {"fields": {"LDAP_DEFAULT_PORT:I": {"value": "0x185", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serverName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXBuilderParameters;": {"fields": {"maxPathLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore;Ljava/security/cert/CertSelector;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Set;Ljava/security/cert/CertSelector;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxPathLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxPathLength(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXCertPathBuilderResult;": {"fields": {"certPath:Ljava/security/cert/CertPath;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPath;Ljava/security/cert/TrustAnchor;Ljava/security/cert/PolicyNode;Ljava/security/PublicKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertPath()Ljava/security/cert/CertPath;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXCertPathChecker;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check(Ljava/security/cert/Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXCertPathValidatorResult;": {"fields": {"policyTree:Ljava/security/cert/PolicyNode;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectPublicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trustAnchor:Ljava/security/cert/TrustAnchor;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/TrustAnchor;Ljava/security/cert/PolicyNode;Ljava/security/PublicKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyTree()Ljava/security/cert/PolicyNode;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrustAnchor()Ljava/security/cert/TrustAnchor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXParameters;": {"fields": {"anyPolicyInhibited:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certPathCheckers:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certSelector:Ljava/security/cert/CertSelector;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certStores:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "date:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "explicitPolicyRequired:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "policyMappingInhibited:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "policyQualifiersRejected:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "revocationEnabled:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sigProvider:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmodInitialPolicies:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmodTrustAnchors:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addCertPathChecker(Ljava/security/cert/PKIXCertPathChecker;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addCertStore(Ljava/security/cert/CertStore;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertPathCheckers()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertStores()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInitialPolicies()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyQualifiersRejected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigProvider()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTargetCertConstraints()Ljava/security/cert/CertSelector;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrustAnchors()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAnyPolicyInhibited()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isExplicitPolicyRequired()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPolicyMappingInhibited()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRevocationEnabled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAnyPolicyInhibited(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertPathCheckers(Ljava/util/List;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertStores(Ljava/util/List;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExplicitPolicyRequired(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInitialPolicies(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPolicyMappingInhibited(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPolicyQualifiersRejected(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRevocationEnabled(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSigProvider(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTargetCertConstraints(Ljava/security/cert/CertSelector;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTrustAnchors(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXReason;": {"fields": {"$VALUES:[Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INVALID_KEY_USAGE:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INVALID_NAME:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INVALID_POLICY:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NAME_CHAINING:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOT_CA_CERT:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_TRUST_ANCHOR:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PATH_TOO_LONG:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNRECOGNIZED_CRIT_EXT:Ljava/security/cert/PKIXReason;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/cert/PKIXReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/cert/PKIXReason;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXRevocationChecker$Option;": {"fields": {"$VALUES:[Ljava/security/cert/PKIXRevocationChecker$Option;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_FALLBACK:Ljava/security/cert/PKIXRevocationChecker$Option;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ONLY_END_ENTITY:Ljava/security/cert/PKIXRevocationChecker$Option;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PREFER_CRLS:Ljava/security/cert/PKIXRevocationChecker$Option;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SOFT_FAIL:Ljava/security/cert/PKIXRevocationChecker$Option;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/security/cert/PKIXRevocationChecker$Option;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/security/cert/PKIXRevocationChecker$Option;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PKIXRevocationChecker;": {"fields": {"ocspExtensions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ocspResponder:Ljava/net/URI;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ocspResponderCert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ocspResponses:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "options:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/security/cert/PKIXRevocationChecker;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOcspExtensions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOcspResponder()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOcspResponderCert()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOcspResponses()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOptions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoftFailExceptions()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOcspExtensions(Ljava/util/List;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOcspResponder(Ljava/net/URI;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOcspResponderCert(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOcspResponses(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOptions(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PolicyNode;": {"fields": {}, "methods": {"getChildren()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDepth()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExpectedPolicies()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/security/cert/PolicyNode;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyQualifiers()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValidPolicy()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCritical()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/PolicyQualifierInfo;": {"fields": {"mData:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mEncoded:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mId:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pqiString:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyQualifier()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyQualifierId()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/URICertStoreParameters;": {"fields": {"myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uri:Ljava/net/URI;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URI;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/security/cert/URICertStoreParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURI()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/TrustAnchor;": {"fields": {"caName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "caPrincipal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nc:Lsun/security/x509/NameConstraintsExtension;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ncBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trustedCert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/security/PublicKey;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/cert/X509Certificate;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/security/auth/x500/X500Principal;Ljava/security/PublicKey;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNameConstraints([B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCA()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCAName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCAPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNameConstraints()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrustedCert()Ljava/security/cert/X509Certificate;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509CRL;": {"fields": {"issuerPrincipal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextUpdate()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificate(Ljava/math/BigInteger;)Ljava/security/cert/X509CRLEntry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificate(Ljava/security/cert/X509Certificate;)Ljava/security/cert/X509CRLEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificates()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTBSCertList()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThisUpdate()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509CRLEntry;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateIssuer()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationDate()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationReason()Ljava/security/cert/CRLReason;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasExtensions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509CRLSelector;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certChecking:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dateAndTime:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "issuerNames:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "issuerX500Principals:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxCRL:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minCRL:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skew:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIssuerNameInternal(Ljava/lang/Object;Ljavax/security/auth/x500/X500Principal;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneAndCheckIssuerNames(Ljava/util/Collection;)Ljava/util/HashSet;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneIssuerNames(Ljava/util/Collection;)Ljava/util/HashSet;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseIssuerNames(Ljava/util/Collection;)Ljava/util/HashSet;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addIssuer(Ljavax/security/auth/x500/X500Principal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIssuerName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIssuerName([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateChecking()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateAndTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuers()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxCRL()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinCRL()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match(Ljava/security/cert/CRL;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertificateChecking(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDateAndTime(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDateAndTime(Ljava/util/Date;J)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setIssuerNames(Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIssuers(Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxCRLNumber(Ljava/math/BigInteger;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinCRLNumber(Ljava/math/BigInteger;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509CertSelector;": {"fields": {"ANY_EXTENDED_KEY_USAGE:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CERT_POLICIES_ID:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EXTENDED_KEY_USAGE_ID:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EXTENSION_OIDS:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FALSE:Ljava/lang/Boolean;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_ANY:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_CONSTRAINTS_ID:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_DIRECTORY:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_DNS:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_EDI:I": {"value": "0x5", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_IP:I": {"value": "0x7", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OID:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_RFC822:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_URI:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_X400:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NUM_OF_EXTENSIONS:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRIVATE_KEY_USAGE_ID:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SUBJECT_ALT_NAME_ID:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "authorityKeyID:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "basicConstraints:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certificateValid:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "issuer:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyPurposeOIDSet:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyPurposeSet:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyUsage:[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchAllSubjectAltNames:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nc:Lsun/security/x509/NameConstraintsExtension;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ncBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pathToGeneralNames:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pathToNames:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "policy:Lsun/security/x509/CertificatePolicySet;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "policySet:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privateKeyValid:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialNumber:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subject:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectAlternativeGeneralNames:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectAlternativeNames:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectKeyID:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectPublicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectPublicKeyAlgID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectPublicKeyBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "x509Cert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPathToNameInternal(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addSubjectAlternativeNameInternal(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneAndCheckNames(Ljava/util/Collection;)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneNames(Ljava/util/Collection;)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cloneSet(Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equalNames(Ljava/util/Collection;Ljava/util/Collection;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExtensionObject(Ljava/security/cert/X509Certificate;I)Ljava/security/cert/Extension;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyUsageToString([Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeGeneralNameInterface(ILjava/lang/Object;)Lsun/security/x509/GeneralNameInterface;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchAuthorityKeyID(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchBasicConstraints(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchExcluded(Lsun/security/x509/GeneralSubtrees;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchExtendedKeyUsage(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchKeyUsage(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchNameConstraints(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchPathToNames(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchPermitted(Lsun/security/x509/GeneralSubtrees;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchPolicy(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchPrivateKeyValid(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchSubjectAlternativeNames(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchSubjectKeyID(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchSubjectPublicKeyAlgID(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseNames(Ljava/util/Collection;)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addPathToName(ILjava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPathToName(I[B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addSubjectAlternativeName(ILjava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addSubjectAlternativeName(I[B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAuthorityKeyIdentifier()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBasicConstraints()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificate()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateValid()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtendedKeyUsage()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuer()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAsBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAsString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyUsage()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMatchAllSubjectAltNames()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNameConstraints()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPathToNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicy()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateKeyValid()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubject()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAsBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAsString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectKeyIdentifier()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectPublicKeyAlgID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAuthorityKeyIdentifier([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBasicConstraints(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertificate(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertificateValid(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExtendedKeyUsage(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIssuer(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIssuer(Ljavax/security/auth/x500/X500Principal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIssuer([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setKeyUsage([Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMatchAllSubjectAltNames(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNameConstraints([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPathToNames(Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPathToNamesInternal(Ljava/util/Set;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setPolicy(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPrivateKeyValid(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSerialNumber(Ljava/math/BigInteger;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubject(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubject(Ljavax/security/auth/x500/X500Principal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubject([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubjectAlternativeNames(Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubjectKeyIdentifier([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubjectPublicKey(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubjectPublicKey([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSubjectPublicKeyAlgID(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509Certificate;": {"fields": {"serialVersionUID:J": {"value": "-0x22924357c8106208L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "issuerX500Principal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subjectX500Principal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/util/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBasicConstraints()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtendedKeyUsage()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerUniqueID()[Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyUsage()[Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectDN()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectUniqueID()[Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTBSCertificate()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/cert/X509Extension;": {"fields": {}, "methods": {"getCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensionValue(Ljava/lang/String;)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNonCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/DSAKey;": {"fields": {}, "methods": {"getParams()Ljava/security/interfaces/DSAParams;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/DSAKeyPairGenerator;": {"fields": {}, "methods": {"initialize(IZLjava/security/SecureRandom;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/security/interfaces/DSAParams;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/DSAParams;": {"fields": {}, "methods": {"getG()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQ()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/DSAPrivateKey;": {"fields": {"serialVersionUID:J": {"value": "0x6bebab423b256247L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getX()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/DSAPublicKey;": {"fields": {"serialVersionUID:J": {"value": "0x1121eb28ab28c7fcL", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getY()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/ECKey;": {"fields": {}, "methods": {"getParams()Ljava/security/spec/ECParameterSpec;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/ECPrivateKey;": {"fields": {"serialVersionUID:J": {"value": "-0x6d95a1605dbca4e0L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getS()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/ECPublicKey;": {"fields": {"serialVersionUID:J": {"value": "-0x2e013498666f33baL", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getW()Ljava/security/spec/ECPoint;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/EdECKey;": {"fields": {}, "methods": {"getParams()Ljava/security/spec/NamedParameterSpec;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/EdECPrivateKey;": {"fields": {}, "methods": {"getBytes()Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/EdECPublicKey;": {"fields": {}, "methods": {"getPoint()Ljava/security/spec/EdECPoint;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/RSAMultiPrimePrivateCrtKey;": {"fields": {"serialVersionUID:J": {"value": "0x893c8f62dbaf8a8L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getCrtCoefficient()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOtherPrimeInfo()[Ljava/security/spec/RSAOtherPrimeInfo;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentP()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentQ()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeP()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeQ()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/RSAKey;": {"fields": {}, "methods": {"getModulus()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/RSAPublicKey;": {"fields": {"serialVersionUID:J": {"value": "-0x791e13121315498aL", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/RSAPrivateKey;": {"fields": {"serialVersionUID:J": {"value": "0x47fc70b7a8c2364eL", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getPrivateExponent()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/RSAPrivateCrtKey;": {"fields": {"serialVersionUID:J": {"value": "-0x4edb47c2072e1390L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getCrtCoefficient()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentP()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentQ()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeP()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeQ()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/XECPublicKey;": {"fields": {}, "methods": {"getU()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/XECPrivateKey;": {"fields": {}, "methods": {"getScalar()Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/interfaces/XECKey;": {"fields": {}, "methods": {"getParams()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/AlgorithmParameterSpec;": {"fields": {}, "methods": {}}, "Ljava/security/spec/DSAParameterSpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "q:Ljava/math/BigInteger;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/DSAPrivateKeySpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "q:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "x:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getX()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECFieldF2m;": {"fields": {"ks:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rp:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFieldSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getM()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMidTermsOfReductionPolynomial()[I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReductionPolynomial()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECFieldFp;": {"fields": {"p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFieldSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECField;": {"fields": {}, "methods": {"getFieldSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/DSAPublicKeySpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "q:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "y:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getY()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECGenParameterSpec;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECParameterSpec;": {"fields": {"curve:Ljava/security/spec/EllipticCurve;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "curveName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "g:Ljava/security/spec/ECPoint;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "h:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "n:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/EllipticCurve;Ljava/security/spec/ECPoint;Ljava/math/BigInteger;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCofactor()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurve()Ljava/security/spec/EllipticCurve;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurveName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getGenerator()Ljava/security/spec/ECPoint;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrder()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurveName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Ljava/security/spec/ECPoint;": {"fields": {"POINT_INFINITY:Ljava/security/spec/ECPoint;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "x:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "y:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAffineX()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAffineY()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECPublicKeySpec;": {"fields": {"params:Ljava/security/spec/ECParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "w:Ljava/security/spec/ECPoint;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/ECPoint;Ljava/security/spec/ECParameterSpec;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/ECParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getW()Ljava/security/spec/ECPoint;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/ECPrivateKeySpec;": {"fields": {"params:Ljava/security/spec/ECParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "s:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/security/spec/ECParameterSpec;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/ECParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getS()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/EdECPoint;": {"fields": {"xOdd:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "y:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ZLjava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getY()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isXOdd()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/EdECPrivateKeySpec;": {"fields": {"bytes:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "params:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/NamedParameterSpec;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/NamedParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/EllipticCurve;": {"fields": {"a:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "b:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "field:Ljava/security/spec/ECField;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seed:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/ECField;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/spec/ECField;Ljava/math/BigInteger;Ljava/math/BigInteger;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/security/spec/ECField;Ljava/math/BigInteger;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getA()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getB()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getField()Ljava/security/spec/ECField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeed()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/EdECPublicKeySpec;": {"fields": {"params:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "point:Ljava/security/spec/EdECPoint;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/NamedParameterSpec;Ljava/security/spec/EdECPoint;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/NamedParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPoint()Ljava/security/spec/EdECPoint;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/InvalidParameterSpecException;": {"fields": {"serialVersionUID:J": {"value": "-0xd77cc344539982eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/EncodedKeySpec;": {"fields": {"encodedKey:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/MGF1ParameterSpec;": {"fields": {"SHA1:Ljava/security/spec/MGF1ParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHA224:Ljava/security/spec/MGF1ParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHA256:Ljava/security/spec/MGF1ParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHA384:Ljava/security/spec/MGF1ParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHA512:Ljava/security/spec/MGF1ParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mdName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDigestAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/InvalidKeySpecException;": {"fields": {"serialVersionUID:J": {"value": "0x31366ae64eda869aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/KeySpec;": {"fields": {}, "methods": {}}, "Ljava/security/spec/PKCS8EncodedKeySpec;": {"fields": {}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/NamedParameterSpec;": {"fields": {"ED25519:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ED448:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "X25519:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "X448:Ljava/security/spec/NamedParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAMultiPrimePrivateCrtKeySpec;": {"fields": {"crtCoefficient:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "otherPrimeInfo:[Ljava/security/spec/RSAOtherPrimeInfo;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeExponentP:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeExponentQ:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeP:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeQ:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;[Ljava/security/spec/RSAOtherPrimeInfo;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCrtCoefficient()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOtherPrimeInfo()[Ljava/security/spec/RSAOtherPrimeInfo;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAKeyGenParameterSpec;": {"fields": {"F0:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "F4:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keysize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeysize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/PSSParameterSpec;": {"fields": {"DEFAULT:Ljava/security/spec/PSSParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mdName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mgfName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mgfSpec:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "saltLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailerField:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDigestAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMGFAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMGFParameters()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSaltLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrailerField()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAOtherPrimeInfo;": {"fields": {"crtCoefficient:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prime:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCrtCoefficient()Ljava/math/BigInteger;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponent()Ljava/math/BigInteger;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrime()Ljava/math/BigInteger;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAPrivateCrtKeySpec;": {"fields": {"crtCoefficient:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeExponentP:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeExponentQ:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeP:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeQ:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCrtCoefficient()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeExponentQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeQ()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAPrivateKeySpec;": {"fields": {"modulus:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privateExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModulus()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateExponent()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/RSAPublicKeySpec;": {"fields": {"modulus:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "publicExponent:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getModulus()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicExponent()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/X509EncodedKeySpec;": {"fields": {}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/XECPrivateKeySpec;": {"fields": {"params:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scalar:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/AlgorithmParameterSpec;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScalar()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/security/spec/XECPublicKeySpec;": {"fields": {"params:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "u:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getU()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Array;": {"fields": {}, "methods": {"free()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(JI)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(JILjava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(Ljava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseType()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseTypeName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSet()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSet(JI)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSet(JILjava/util/Map;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSet(Ljava/util/Map;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Blob;": {"fields": {}, "methods": {"free()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBinaryStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBinaryStream(JJ)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(JI)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(Ljava/sql/Blob;J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position([BJ)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(J)Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(J[B)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(J[BII)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/BatchUpdateException;": {"fields": {"serialVersionUID:J": {"value": "0x52f473c0c18b0e5dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "updateCounts:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I[I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I[ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;[I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;[ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;[I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;[ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUpdateCounts()[I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/ClientInfoStatus;": {"fields": {"$VALUES:[Ljava/sql/ClientInfoStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REASON_UNKNOWN:Ljava/sql/ClientInfoStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REASON_UNKNOWN_PROPERTY:Ljava/sql/ClientInfoStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REASON_VALUE_INVALID:Ljava/sql/ClientInfoStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REASON_VALUE_TRUNCATED:Ljava/sql/ClientInfoStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/sql/ClientInfoStatus;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/sql/ClientInfoStatus;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/CallableStatement;": {"fields": {}, "methods": {"getArray(I)Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(Ljava/lang/String;)Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(I)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(II)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(Ljava/lang/String;)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlob(I)Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlob(Ljava/lang/String;)Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(I)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(Ljava/lang/String;)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(I)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(Ljava/lang/String;)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream(I)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream(Ljava/lang/String;)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClob(I)Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClob(Ljava/lang/String;)Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(I)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(ILjava/util/Calendar;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(Ljava/lang/String;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(I)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/String;)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(I)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/String;)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNCharacterStream(I)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNCharacterStream(Ljava/lang/String;)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNClob(I)Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNClob(Ljava/lang/String;)Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNString(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(ILjava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/lang/String;Ljava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRef(I)Ljava/sql/Ref;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRef(Ljava/lang/String;)Ljava/sql/Ref;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRowId(I)Ljava/sql/RowId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRowId(Ljava/lang/String;)Ljava/sql/RowId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLXML(I)Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLXML(Ljava/lang/String;)Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(I)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(Ljava/lang/String;)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(I)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(ILjava/util/Calendar;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(Ljava/lang/String;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(I)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(ILjava/util/Calendar;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(Ljava/lang/String;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL(I)Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(III)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(IILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(Ljava/lang/String;II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerOutParameter(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBigDecimal(Ljava/lang/String;Ljava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(Ljava/lang/String;Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(Ljava/lang/String;B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(Ljava/lang/String;[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(Ljava/lang/String;Ljava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(Ljava/lang/String;Ljava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(Ljava/lang/String;Ljava/sql/Date;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(Ljava/lang/String;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(Ljava/lang/String;F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(Ljava/lang/String;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRowId(Ljava/lang/String;Ljava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSQLXML(Ljava/lang/String;Ljava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(Ljava/lang/String;S)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(Ljava/lang/String;Ljava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(Ljava/lang/String;Ljava/sql/Time;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(Ljava/lang/String;Ljava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(Ljava/lang/String;Ljava/sql/Timestamp;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setURL(Ljava/lang/String;Ljava/net/URL;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wasNull()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Clob;": {"fields": {}, "methods": {"free()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsciiStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream()Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream(JJ)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubString(JI)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(Ljava/lang/String;J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(Ljava/sql/Clob;J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(J)Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(J)Ljava/io/Writer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(JLjava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(JLjava/lang/String;II)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Connection;": {"fields": {"TRANSACTION_NONE:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSACTION_READ_COMMITTED:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSACTION_READ_UNCOMMITTED:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSACTION_REPEATABLE_READ:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRANSACTION_SERIALIZABLE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"clearWarnings()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "commit()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createArrayOf(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createBlob()Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createClob()Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createNClob()Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSQLXML()Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createStatement()Ljava/sql/Statement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createStatement(II)Ljava/sql/Statement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createStatement(III)Ljava/sql/Statement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createStruct(Ljava/lang/String;[Ljava/lang/Object;)Ljava/sql/Struct;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAutoCommit()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCatalog()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClientInfo(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClientInfo()Ljava/util/Properties;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHoldability()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMetaData()Ljava/sql/DatabaseMetaData;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransactionIsolation()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeMap()Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWarnings()Ljava/sql/SQLWarning;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nativeSQL(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareCall(Ljava/lang/String;)Ljava/sql/CallableStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareCall(Ljava/lang/String;II)Ljava/sql/CallableStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareCall(Ljava/lang/String;III)Ljava/sql/CallableStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;I)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;II)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;III)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;[I)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareStatement(Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/PreparedStatement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "releaseSavepoint(Ljava/sql/Savepoint;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rollback()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rollback(Ljava/sql/Savepoint;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAutoCommit(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCatalog(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClientInfo(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClientInfo(Ljava/util/Properties;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHoldability(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSavepoint()Ljava/sql/Savepoint;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSavepoint(Ljava/lang/String;)Ljava/sql/Savepoint;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTransactionIsolation(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTypeMap(Ljava/util/Map;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/DataTruncation;": {"fields": {"serialVersionUID:J": {"value": "0x59b5cdae7f4e5851L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dataSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameter:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IZZII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IZZIILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDataSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameter()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRead()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/DatabaseMetaData;": {"fields": {"attributeNoNulls:S": {"value": "0x0s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attributeNullable:S": {"value": "0x1s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "attributeNullableUnknown:S": {"value": "0x2s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowNotPseudo:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowPseudo:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowSession:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowTemporary:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowTransaction:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bestRowUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "columnNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "columnNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "columnNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionColumnIn:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionColumnInOut:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionColumnOut:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionColumnResult:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionColumnUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionNoTable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionResultUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionReturn:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "functionReturnsTable:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyCascade:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyInitiallyDeferred:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyInitiallyImmediate:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyNoAction:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyNotDeferrable:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeyRestrict:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeySetDefault:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "importedKeySetNull:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnIn:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnInOut:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnOut:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnResult:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnReturn:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureColumnUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureNoResult:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureResultUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "procedureReturnsResult:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqlStateSQL:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqlStateSQL99:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sqlStateXOpen:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tableIndexClustered:S": {"value": "0x1s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tableIndexHashed:S": {"value": "0x2s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tableIndexOther:S": {"value": "0x3s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tableIndexStatistic:S": {"value": "0x0s", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typePredBasic:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typePredChar:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typePredNone:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeSearchable:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "versionColumnNotPseudo:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "versionColumnPseudo:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "versionColumnUnknown:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"allProceduresAreCallable()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allTablesAreSelectable()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "autoCommitFailureClosesAllResultSets()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dataDefinitionCausesTransactionCommit()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dataDefinitionIgnoredInTransactions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deletesAreDetected(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doesMaxRowSizeIncludeBlobs()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBestRowIdentifier(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IZ)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCatalogSeparator()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCatalogTerm()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCatalogs()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClientInfoProperties()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnPrivileges(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumns(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection()Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCrossReference(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDatabaseMajorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDatabaseMinorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDatabaseProductName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDatabaseProductVersion()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultTransactionIsolation()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDriverMajorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDriverMinorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDriverName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDriverVersion()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExportedKeys(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtraNameCharacters()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFunctionColumns(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFunctions(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentifierQuoteString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getImportedKeys(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndexInfo(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJDBCMajorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJDBCMinorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxBinaryLiteralLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxCatalogNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxCharLiteralLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnsInGroupBy()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnsInIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnsInOrderBy()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnsInSelect()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxColumnsInTable()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxConnections()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxCursorNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxIndexLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxProcedureNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxRowSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxSchemaNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxStatementLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxStatements()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxTableNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxTablesInSelect()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxUserNameLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumericFunctions()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimaryKeys(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProcedureColumns(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProcedureTerm()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProcedures(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSetHoldability()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRowIdLifetime()Ljava/sql/RowIdLifetime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLKeywords()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLStateType()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSchemaTerm()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSchemas()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSchemas(Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSearchStringEscape()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStringFunctions()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSuperTables(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSuperTypes(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSystemFunctions()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTablePrivileges(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTableTypes()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTables(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeDateFunctions()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeInfo()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUDTs(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[I)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersionColumns(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertsAreDetected(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCatalogAtStart()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "locatorsUpdateCopy()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullPlusNonNullIsNull()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsAreSortedAtEnd()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsAreSortedAtStart()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsAreSortedHigh()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsAreSortedLow()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "othersDeletesAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "othersInsertsAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "othersUpdatesAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ownDeletesAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ownInsertsAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ownUpdatesAreVisible(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesLowerCaseIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesLowerCaseQuotedIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesMixedCaseIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesMixedCaseQuotedIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesUpperCaseIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storesUpperCaseQuotedIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsANSI92EntryLevelSQL()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsANSI92FullSQL()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsANSI92IntermediateSQL()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsAlterTableWithAddColumn()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsAlterTableWithDropColumn()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsBatchUpdates()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCatalogsInDataManipulation()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCatalogsInIndexDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCatalogsInPrivilegeDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCatalogsInProcedureCalls()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCatalogsInTableDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsColumnAliasing()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsConvert()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsConvert(II)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCoreSQLGrammar()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsCorrelatedSubqueries()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsDataDefinitionAndDataManipulationTransactions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsDataManipulationTransactionsOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsDifferentTableCorrelationNames()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsExpressionsInOrderBy()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsExtendedSQLGrammar()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFullOuterJoins()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsGetGeneratedKeys()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsGroupBy()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsGroupByBeyondSelect()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsGroupByUnrelated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsIntegrityEnhancementFacility()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsLikeEscapeClause()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsLimitedOuterJoins()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMinimumSQLGrammar()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMixedCaseIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMixedCaseQuotedIdentifiers()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMultipleOpenResults()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMultipleResultSets()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsMultipleTransactions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsNamedParameters()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsNonNullableColumns()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOpenCursorsAcrossCommit()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOpenCursorsAcrossRollback()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOpenStatementsAcrossCommit()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOpenStatementsAcrossRollback()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOrderByUnrelated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsOuterJoins()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsPositionedDelete()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsPositionedUpdate()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsResultSetConcurrency(II)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsResultSetHoldability(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsResultSetType(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSavepoints()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSchemasInDataManipulation()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSchemasInIndexDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSchemasInPrivilegeDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSchemasInProcedureCalls()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSchemasInTableDefinitions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSelectForUpdate()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsStatementPooling()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsStoredFunctionsUsingCallSyntax()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsStoredProcedures()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSubqueriesInComparisons()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSubqueriesInExists()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSubqueriesInIns()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsSubqueriesInQuantifieds()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsTableCorrelationNames()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsTransactionIsolationLevel(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsTransactions()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsUnion()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsUnionAll()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updatesAreDetected(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "usesLocalFilePerTable()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "usesLocalFiles()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Date;": {"fields": {"serialVersionUID:J": {"value": "0x14fa46683f356697L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/sql/Date;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHours()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinutes()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeconds()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHours(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinutes(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSeconds(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Driver;": {"fields": {}, "methods": {"acceptsURL(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMajorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinorVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPropertyInfo(Ljava/lang/String;Ljava/util/Properties;)[Ljava/sql/DriverPropertyInfo;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "jdbcCompliant()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/DriverInfo;": {"fields": {"driver:Ljava/sql/Driver;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/sql/Driver;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/DriverManager$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/sql/DriverManager$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/sql/DriverManager;": {"fields": {"SET_LOG_PERMISSION:Ljava/sql/SQLPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logStream:Ljava/io/PrintStream;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logSync:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logWriter:Ljava/io/PrintWriter;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loginTimeout:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "registeredDrivers:Ljava/util/concurrent/CopyOnWriteArrayList;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deregisterDriver(Ljava/sql/Driver;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection(Ljava/lang/String;)Ljava/sql/Connection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection(Ljava/lang/String;Ljava/util/Properties;)Ljava/sql/Connection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection(Ljava/lang/String;Ljava/util/Properties;Ljava/lang/Class;)Ljava/sql/Connection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDriver(Ljava/lang/String;)Ljava/sql/Driver;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDrivers()Ljava/util/Enumeration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLogStream()Ljava/io/PrintStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLogWriter()Ljava/io/PrintWriter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoginTimeout()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDriverAllowed(Ljava/sql/Driver;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDriverAllowed(Ljava/sql/Driver;Ljava/lang/ClassLoader;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadInitialDrivers()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "println(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerDriver(Ljava/sql/Driver;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLogStream(Ljava/io/PrintStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLogWriter(Ljava/io/PrintWriter;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoginTimeout(I)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/DriverPropertyInfo;": {"fields": {"choices:[Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "description:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "required:Z": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/NClob;": {"fields": {}, "methods": {}}, "Ljava/sql/ParameterMetaData;": {"fields": {"parameterModeIn:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterModeInOut:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterModeOut:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterModeUnknown:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parameterNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getParameterClassName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterMode(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterType(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterTypeName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrecision(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScale(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNullable(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSigned(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/PreparedStatement;": {"fields": {}, "methods": {"addBatch()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearParameters()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeQuery()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeUpdate()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMetaData()Ljava/sql/ResultSetMetaData;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterMetaData()Ljava/sql/ParameterMetaData;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setArray(ILjava/sql/Array;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBigDecimal(ILjava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(IB)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(I[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(ILjava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(ILjava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(ILjava/sql/Date;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(ID)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(IF)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(IJ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(IILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRef(ILjava/sql/Ref;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRowId(ILjava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSQLXML(ILjava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(IS)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(ILjava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(ILjava/sql/Time;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(ILjava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(ILjava/sql/Timestamp;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setURL(ILjava/net/URL;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUnicodeStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Ref;": {"fields": {}, "methods": {"getBaseTypeName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/ResultSet;": {"fields": {"CLOSE_CURSORS_AT_COMMIT:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONCUR_READ_ONLY:I": {"value": "0x3ef", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONCUR_UPDATABLE:I": {"value": "0x3f0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FETCH_FORWARD:I": {"value": "0x3e8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FETCH_REVERSE:I": {"value": "0x3e9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FETCH_UNKNOWN:I": {"value": "0x3ea", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOLD_CURSORS_OVER_COMMIT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE_FORWARD_ONLY:I": {"value": "0x3eb", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE_SCROLL_INSENSITIVE:I": {"value": "0x3ec", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TYPE_SCROLL_SENSITIVE:I": {"value": "0x3ed", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"absolute(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "afterLast()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "beforeFirst()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancelRowUpdates()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearWarnings()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findColumn(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(I)Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray(Ljava/lang/String;)Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsciiStream(I)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsciiStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(I)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(II)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(Ljava/lang/String;)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBigDecimal(Ljava/lang/String;I)Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBinaryStream(I)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBinaryStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlob(I)Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlob(Ljava/lang/String;)Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(I)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByte(Ljava/lang/String;)B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(I)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes(Ljava/lang/String;)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream(I)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream(Ljava/lang/String;)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClob(I)Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClob(Ljava/lang/String;)Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConcurrency()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCursorName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(I)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(ILjava/util/Calendar;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(Ljava/lang/String;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(I)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/String;)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFetchDirection()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFetchSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(I)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/String;)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHoldability()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMetaData()Ljava/sql/ResultSetMetaData;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNCharacterStream(I)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNCharacterStream(Ljava/lang/String;)Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNClob(I)Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNClob(Ljava/lang/String;)Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNString(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(ILjava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/lang/String;Ljava/util/Map;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRef(I)Ljava/sql/Ref;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRef(Ljava/lang/String;)Ljava/sql/Ref;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRow()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRowId(I)Ljava/sql/RowId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRowId(Ljava/lang/String;)Ljava/sql/RowId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLXML(I)Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLXML(Ljava/lang/String;)Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(I)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShort(Ljava/lang/String;)S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStatement()Ljava/sql/Statement;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(I)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(ILjava/util/Calendar;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(Ljava/lang/String;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(I)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(ILjava/util/Calendar;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(Ljava/lang/String;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimestamp(Ljava/lang/String;Ljava/util/Calendar;)Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL(I)Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getURL(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnicodeStream(I)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnicodeStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWarnings()Ljava/sql/SQLWarning;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfterLast()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBeforeFirst()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFirst()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLast()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "moveToCurrentRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "moveToInsertRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "refreshRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "relative(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rowDeleted()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rowInserted()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rowUpdated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFetchDirection(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFetchSize(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateArray(ILjava/sql/Array;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateArray(Ljava/lang/String;Ljava/sql/Array;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAsciiStream(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBigDecimal(ILjava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBigDecimal(Ljava/lang/String;Ljava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBinaryStream(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(ILjava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBlob(Ljava/lang/String;Ljava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBoolean(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBoolean(Ljava/lang/String;Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateByte(IB)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateByte(Ljava/lang/String;B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBytes(I[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateBytes(Ljava/lang/String;[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(ILjava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(Ljava/lang/String;Ljava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateCharacterStream(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(ILjava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateClob(Ljava/lang/String;Ljava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateDate(ILjava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateDate(Ljava/lang/String;Ljava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateDouble(ID)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateDouble(Ljava/lang/String;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateFloat(IF)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateFloat(Ljava/lang/String;F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateInt(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateInt(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateLong(IJ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateLong(Ljava/lang/String;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNCharacterStream(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNCharacterStream(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(ILjava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNClob(Ljava/lang/String;Ljava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNull(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateNull(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateObject(ILjava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateObject(ILjava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateObject(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateObject(Ljava/lang/String;Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateRef(ILjava/sql/Ref;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateRef(Ljava/lang/String;Ljava/sql/Ref;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateRow()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateRowId(ILjava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateRowId(Ljava/lang/String;Ljava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateSQLXML(ILjava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateSQLXML(Ljava/lang/String;Ljava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateShort(IS)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateShort(Ljava/lang/String;S)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateTime(ILjava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateTime(Ljava/lang/String;Ljava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateTimestamp(ILjava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateTimestamp(Ljava/lang/String;Ljava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wasNull()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/ResultSetMetaData;": {"fields": {"columnNoNulls:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "columnNullable:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "columnNullableUnknown:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getCatalogName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnClassName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnDisplaySize(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnLabel(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnType(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getColumnTypeName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrecision(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScale(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSchemaName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTableName(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAutoIncrement(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCaseSensitive(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCurrency(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDefinitelyWritable(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNullable(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSearchable(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSigned(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWritable(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/RowId;": {"fields": {}, "methods": {"equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/RowIdLifetime;": {"fields": {"$VALUES:[Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ROWID_UNSUPPORTED:Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROWID_VALID_FOREVER:Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROWID_VALID_OTHER:Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROWID_VALID_SESSION:Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROWID_VALID_TRANSACTION:Ljava/sql/RowIdLifetime;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/sql/RowIdLifetime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/sql/RowIdLifetime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLClientInfoException;": {"fields": {"serialVersionUID:J": {"value": "-0x3bf2512f724c8008L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "failedProperties:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/util/Map;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Map;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFailedProperties()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLData;": {"fields": {}, "methods": {"getSQLTypeName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSQL(Ljava/sql/SQLInput;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeSQL(Ljava/sql/SQLOutput;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLDataException;": {"fields": {"serialVersionUID:J": {"value": "-0x5f9b15201d737b28L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLException$1;": {"fields": {"cause:Ljava/lang/Throwable;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstException:Ljava/sql/SQLException;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextException:Ljava/sql/SQLException;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/sql/SQLException;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/sql/SQLException;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLException;": {"fields": {"nextUpdater:Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x1da1e930db3e75dcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "SQLState:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/sql/SQLException;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vendorCode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextException()Ljava/sql/SQLException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLState()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNextException(Ljava/sql/SQLException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLFeatureNotSupportedException;": {"fields": {"serialVersionUID:J": {"value": "-0xe3ee632a5412913L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLInput;": {"fields": {}, "methods": {"readArray()Ljava/sql/Array;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAsciiStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBigDecimal()Ljava/math/BigDecimal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBinaryStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBlob()Ljava/sql/Blob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBoolean()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readByte()B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readBytes()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readCharacterStream()Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readClob()Ljava/sql/Clob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDate()Ljava/sql/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readDouble()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readFloat()F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readInt()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLong()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNClob()Ljava/sql/NClob;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readNString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readRef()Ljava/sql/Ref;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readRowId()Ljava/sql/RowId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSQLXML()Ljava/sql/SQLXML;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readShort()S": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readTime()Ljava/sql/Time;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readTimestamp()Ljava/sql/Timestamp;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readURL()Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wasNull()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLIntegrityConstraintViolationException;": {"fields": {"serialVersionUID:J": {"value": "0x6f7c638e72373691L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLInvalidAuthorizationSpecException;": {"fields": {"serialVersionUID:J": {"value": "-0xe3bf62b95ce2eaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLNonTransientConnectionException;": {"fields": {"serialVersionUID:J": {"value": "-0x51379cfe741ab6acL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLNonTransientException;": {"fields": {"serialVersionUID:J": {"value": "-0x7e5943f5880c2e83L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLOutput;": {"fields": {}, "methods": {"writeArray(Ljava/sql/Array;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeAsciiStream(Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBigDecimal(Ljava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBinaryStream(Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBlob(Ljava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBoolean(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeByte(B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeBytes([B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeCharacterStream(Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeClob(Ljava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDate(Ljava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeDouble(D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeFloat(F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeInt(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLong(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeNClob(Ljava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeNString(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/sql/SQLData;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeRef(Ljava/sql/Ref;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeRowId(Ljava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeSQLXML(Ljava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeShort(S)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeString(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeStruct(Ljava/sql/Struct;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeTime(Ljava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeTimestamp(Ljava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeURL(Ljava/net/URL;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLRecoverableException;": {"fields": {"serialVersionUID:J": {"value": "-0x3983d19106a81abbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLTimeoutException;": {"fields": {"serialVersionUID:J": {"value": "-0x3e45a281704380c6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLSyntaxErrorException;": {"fields": {"serialVersionUID:J": {"value": "-0x19969bfd7ccad6f5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLTransactionRollbackException;": {"fields": {"serialVersionUID:J": {"value": "0x48cff46d4bd5deedL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLTransientException;": {"fields": {"serialVersionUID:J": {"value": "-0x7d7e3ea48cad81ebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLWarning;": {"fields": {"serialVersionUID:J": {"value": "0x365d2d0aa3e484d8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextWarning()Ljava/sql/SQLWarning;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNextWarning(Ljava/sql/SQLWarning;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLTransientConnectionException;": {"fields": {"serialVersionUID:J": {"value": "-0x22f9641fa3ae87e0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/SQLXML;": {"fields": {}, "methods": {"free()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBinaryStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterStream()Ljava/io/Reader;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSource(Ljava/lang/Class;)Ljavax/xml/transform/Source;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream()Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream()Ljava/io/Writer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setResult(Ljava/lang/Class;)Ljavax/xml/transform/Result;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Savepoint;": {"fields": {}, "methods": {"getSavepointId()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSavepointName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Struct;": {"fields": {}, "methods": {"getAttributes()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes(Ljava/util/Map;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLTypeName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Statement;": {"fields": {"CLOSE_ALL_RESULTS:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CLOSE_CURRENT_RESULT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXECUTE_FAILED:I": {"value": "-0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEEP_CURRENT_RESULT:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_GENERATED_KEYS:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RETURN_GENERATED_KEYS:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUCCESS_NO_INFO:I": {"value": "-0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"addBatch(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearBatch()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearWarnings()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/String;I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/String;[I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/String;[Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeBatch()[I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeQuery(Ljava/lang/String;)Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeUpdate(Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeUpdate(Ljava/lang/String;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeUpdate(Ljava/lang/String;[I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeUpdate(Ljava/lang/String;[Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection()Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFetchDirection()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFetchSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGeneratedKeys()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxFieldSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxRows()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMoreResults()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMoreResults(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueryTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSet()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSetConcurrency()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSetHoldability()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResultSetType()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUpdateCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWarnings()Ljava/sql/SQLWarning;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPoolable()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCursorName(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEscapeProcessing(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFetchDirection(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFetchSize(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxFieldSize(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxRows(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPoolable(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setQueryTimeout(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Time;": {"fields": {"serialVersionUID:J": {"value": "0x74894a0dd932c471L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/sql/Time;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDay()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMonth(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setYear(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Timestamp;": {"fields": {"serialVersionUID:J": {"value": "0x2618d5c80153bf65L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nanos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(IIIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/sql/Timestamp;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "after(Ljava/sql/Timestamp;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "before(Ljava/sql/Timestamp;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/sql/Timestamp;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/util/Date;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/sql/Timestamp;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNanos()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNanos(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Wrapper;": {"fields": {}, "methods": {"isWrapperFor(Ljava/lang/Class;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/sql/Types;": {"fields": {"ARRAY:I": {"value": "0x7d3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BIGINT:I": {"value": "-0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BINARY:I": {"value": "-0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BIT:I": {"value": "-0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BLOB:I": {"value": "0x7d4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BOOLEAN:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHAR:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CLOB:I": {"value": "0x7d5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DATALINK:I": {"value": "0x46", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DATE:I": {"value": "0x5b", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECIMAL:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DISTINCT:I": {"value": "0x7d1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DOUBLE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FLOAT:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INTEGER:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAVA_OBJECT:I": {"value": "0x7d0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONGNVARCHAR:I": {"value": "-0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONGVARBINARY:I": {"value": "-0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONGVARCHAR:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NCHAR:I": {"value": "-0xf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NCLOB:I": {"value": "0x7db", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NULL:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NUMERIC:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NVARCHAR:I": {"value": "-0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OTHER:I": {"value": "0x457", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REAL:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REF:I": {"value": "0x7d6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROWID:I": {"value": "-0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SMALLINT:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SQLXML:I": {"value": "0x7d9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRUCT:I": {"value": "0x7d2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIME:I": {"value": "0x5c", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIMESTAMP:I": {"value": "0x5d", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TINYINT:I": {"value": "-0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VARBINARY:I": {"value": "-0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VARCHAR:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/text/Annotation;": {"fields": {"value:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/AttributeEntry;": {"fields": {"key:Ljava/text/AttributedCharacterIterator$Attribute;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/text/AttributedCharacterIterator$Attribute;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/AttributedCharacterIterator$Attribute;": {"fields": {"INPUT_METHOD_SEGMENT:Ljava/text/AttributedCharacterIterator$Attribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LANGUAGE:Ljava/text/AttributedCharacterIterator$Attribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "READING:Ljava/text/AttributedCharacterIterator$Attribute;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instanceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x7ee18bd932b8e8a4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/AttributedCharacterIterator;": {"fields": {}, "methods": {"getAllAttributeKeys()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttribute(Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit(Ljava/text/AttributedCharacterIterator$Attribute;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit(Ljava/util/Set;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart(Ljava/text/AttributedCharacterIterator$Attribute;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart(Ljava/util/Set;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/AttributedString$AttributeMap;": {"fields": {"beginIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/text/AttributedString;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/text/AttributedString;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/AttributedString;": {"fields": {"INITIAL_CAPACITY:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runAttributeValues:[Ljava/util/Vector;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runAttributes:[Ljava/util/Vector;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runStarts:[I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "text:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mattributeValuesMatch(Ljava/text/AttributedString;Ljava/util/Set;II)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mcharAt(Ljava/text/AttributedString;I)C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetAttribute(Ljava/text/AttributedString;Ljava/text/AttributedCharacterIterator$Attribute;I)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetAttributeCheckRange(Ljava/text/AttributedString;Ljava/text/AttributedCharacterIterator$Attribute;III)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smvaluesMatch(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/AttributedCharacterIterator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/AttributedCharacterIterator;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/AttributedCharacterIterator;II[Ljava/text/AttributedCharacterIterator$Attribute;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/text/AttributedCharacterIterator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAttributeImpl(Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;II)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAttributeRunData(Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendContents(Ljava/lang/StringBuffer;Ljava/text/CharacterIterator;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "attributeValuesMatch(Ljava/util/Set;II)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charAt(I)C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createRunAttributeDataVectors()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureRunBreak(I)I": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureRunBreak(IZ)I": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAttribute(Ljava/text/AttributedCharacterIterator$Attribute;I)Ljava/lang/Object;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAttributeCheckRange(Ljava/text/AttributedCharacterIterator$Attribute;III)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapsDiffer(Ljava/util/Map;Ljava/util/Map;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setAttributes(Ljava/util/Map;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valuesMatch(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAttribute(Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAttribute(Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAttributes(Ljava/util/Map;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIterator()Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIterator([Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIterator([Ljava/text/AttributedCharacterIterator$Attribute;II)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/text/AttributedString$AttributedStringIterator;": {"fields": {"beginIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentRunIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentRunLimit:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentRunStart:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "relevantAttributes:[Ljava/text/AttributedCharacterIterator$Attribute;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/text/AttributedString;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/text/AttributedString;[Ljava/text/AttributedCharacterIterator$Attribute;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getString()Ljava/text/AttributedString;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalSetIndex(I)C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateRunInfo()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "current()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAllAttributeKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttribute(Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBeginIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEndIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit(Ljava/text/AttributedCharacterIterator$Attribute;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit(Ljava/util/Set;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart(Ljava/text/AttributedCharacterIterator$Attribute;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart(Ljava/util/Set;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIndex(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Bidi;": {"fields": {"DIRECTION_DEFAULT_LEFT_TO_RIGHT:I": {"value": "-0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTION_DEFAULT_RIGHT_TO_LEFT:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTION_LEFT_TO_RIGHT:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DIRECTION_RIGHT_TO_LEFT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bidiBase:Landroid/icu/text/Bidi;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Landroid/icu/text/Bidi;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/AttributedCharacterIterator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([CI[BIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reorderVisually([BI[Ljava/lang/Object;II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requiresBidi([CII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateConstToIcu(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseIsLeftToRight()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createLineBidi(II)Ljava/text/Bidi;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseLevel()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLevelAt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLevel(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunLimit(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunStart(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeftToRight()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMixed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRightToLeft()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/BreakIterator;": {"fields": {"DONE:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterInstance()Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCharacterInstance(Ljava/util/Locale;)Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLineInstance()Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLineInstance(Ljava/util/Locale;)Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSentenceInstance()Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSentenceInstance(Ljava/util/Locale;)Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWordInstance()Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWordInstance(Ljava/util/Locale;)Ljava/text/BreakIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "current()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "following(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getText()Ljava/text/CharacterIterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBoundary(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "preceding(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/text/CharacterIterator;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/CalendarBuilder;": {"fields": {"COMPUTED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ISO_DAY_OF_WEEK:I": {"value": "0x3e8", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_FIELD:I": {"value": "0x12", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINIMUM_USER_STAMP:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSET:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_YEAR:I": {"value": "0x11", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "field:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxFieldIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextStamp:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidDayOfWeek(I)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCalendarDayOfWeek(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toISODayOfWeek(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addYear(I)Ljava/text/CalendarBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear(I)Ljava/text/CalendarBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "establish(Ljava/util/Calendar;)Ljava/util/Calendar;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(II)Ljava/text/CalendarBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/CharacterIterator;": {"fields": {"DONE:C": {"value": "'\\uffff'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "current()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBeginIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEndIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIndex(I)C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/CharacterIteratorFieldDelegate;": {"fields": {"attributedStrings:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatted(ILjava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatted(Ljava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIterator(Ljava/lang/String;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/ChoiceFormat;": {"fields": {"EXPONENT:J": {"value": "0x7ff0000000000000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "POSITIVEINFINITY:J": {"value": "0x7ff0000000000000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIGN:J": {"value": "-0x8000000000000000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x18e9c6bee365b604L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "choiceFormats:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "choiceLimits:[D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([D[Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleArraySize([D)[D": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubleArraySize([Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextDouble(D)D": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble(DZ)D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousDouble(D)D": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "applyPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(DLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(JLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormats()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLimits()[D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Number;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setChoices([D[Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/CollationElementIterator;": {"fields": {"NULLORDER:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "icuIterator:Landroid/icu/text/CollationElementIterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Landroid/icu/text/CollationElementIterator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primaryOrder(I)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "secondaryOrder(I)S": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tertiaryOrder(I)S": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxExpansion(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOffset(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/text/CharacterIterator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/CollationKey;": {"fields": {"source:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/text/CollationKey;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSourceString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toByteArray()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Collator;": {"fields": {"CANONICAL_DECOMPOSITION:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FULL_DECOMPOSITION:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IDENTICAL:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_DECOMPOSITION:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIMARY:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECONDARY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TERTIARY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "icuColl:Landroid/icu/text/Collator;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Landroid/icu/text/Collator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decompositionMode_ICU_Java(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decompositionMode_Java_ICU(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance()Ljava/text/Collator;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/text/Collator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCollationKey(Ljava/lang/String;)Ljava/text/CollationKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDecomposition()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStrength()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDecomposition(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStrength(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DateFormat$Field;": {"fields": {"AM_PM:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_MONTH:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK_IN_MONTH:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_YEAR:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERA:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR0:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR1:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY0:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY1:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLISECOND:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTH:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIME_ZONE:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_MONTH:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_YEAR:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEAR:Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "calendarToFieldMapping:[Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "instanceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6744fc81f123e710L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "calendarField:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofCalendarField(I)Ljava/text/DateFormat$Field;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarField()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DateFormat;": {"fields": {"AM_PM_FIELD:I": {"value": "0xe", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DATE_FIELD:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK_FIELD:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK_IN_MONTH_FIELD:I": {"value": "0xb", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_YEAR_FIELD:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFAULT:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERA_FIELD:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FULL:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR0_FIELD:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR1_FIELD:I": {"value": "0xf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY0_FIELD:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY1_FIELD:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONG:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEDIUM:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLISECOND_FIELD:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE_FIELD:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTH_FIELD:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND_FIELD:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TIMEZONE_FIELD:I": {"value": "0x11", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_MONTH_FIELD:I": {"value": "0xd", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_YEAR_FIELD:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEAR_FIELD:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "is24Hour:Ljava/lang/Boolean;": {"value": "null", "other": [".field", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x642ca1e4c22615fcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "calendar:Ljava/util/Calendar;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "numberFormat:Ljava/text/NumberFormat;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(IIILjava/util/Locale;)Ljava/text/DateFormat;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateInstance()Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateInstance(I)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateInstance(ILjava/util/Locale;)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateTimeInstance()Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateTimeInstance(II)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateTimeInstance(IILjava/util/Locale;)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance()Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeInstance()Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeInstance(I)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeInstance(ILjava/util/Locale;)Ljava/text/DateFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set24HourTimePref(Ljava/lang/Boolean;)V": {"other": [".method", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Date;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Date;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendar()Ljava/util/Calendar;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberFormat()Ljava/text/NumberFormat;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLenient()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCalendar(Ljava/util/Calendar;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLenient(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNumberFormat(Ljava/text/NumberFormat;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeZone(Ljava/util/TimeZone;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DateFormatSymbols;": {"fields": {"PATTERN_AM_PM:I": {"value": "0xe", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_DAY_OF_MONTH:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_DAY_OF_WEEK:I": {"value": "0x9", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_DAY_OF_WEEK_IN_MONTH:I": {"value": "0xb", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_DAY_OF_YEAR:I": {"value": "0xa", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_DAY_PERIOD:I": {"value": "0x18", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_ERA:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_FLEXIBLE_DAY_PERIOD:I": {"value": "0x19", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_HOUR0:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_HOUR1:I": {"value": "0xf", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_HOUR_OF_DAY0:I": {"value": "0x5", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_HOUR_OF_DAY1:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_ISO_DAY_OF_WEEK:I": {"value": "0x14", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_ISO_ZONE:I": {"value": "0x15", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_MILLISECOND:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_MINUTE:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_MONTH:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_MONTH_STANDALONE:I": {"value": "0x16", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_SECOND:I": {"value": "0x7", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_STANDALONE_DAY_OF_WEEK:I": {"value": "0x17", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_WEEK_OF_MONTH:I": {"value": "0xd", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_WEEK_OF_YEAR:I": {"value": "0xc", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_WEEK_YEAR:I": {"value": "0x13", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_YEAR:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_ZONE_NAME:I": {"value": "0x11", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_ZONE_VALUE:I": {"value": "0x12", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedInstances:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentSerialVersion:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "millisPerHour:I": {"value": "0x36ee80", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "patternChars:Ljava/lang/String;": {"value": "\"GyMdkHmsSEDFwWahKzZYuXLcbB\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x53198e36cae8e83eL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ampms:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedHashCode:I": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eras:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isZoneStringsSet:Z": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastZoneIndex:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localPatternChars:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "months:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shortMonths:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shortStandAloneMonths:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shortStandAloneWeekdays:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shortWeekdays:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "standAloneMonths:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "standAloneWeekdays:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tinyMonths:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tinyStandAloneMonths:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tinyStandAloneWeekdays:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tinyWeekdays:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekdays:[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zoneStrings:[[Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyMembers(Ljava/text/DateFormatSymbols;Ljava/text/DateFormatSymbols;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCachedInstance(Ljava/util/Locale;)Ljava/text/DateFormatSymbols;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance()Ljava/text/DateFormatSymbols;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/text/DateFormatSymbols;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstanceRef(Ljava/util/Locale;)Ljava/text/DateFormatSymbols;": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZoneStringsImpl(Z)[[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeData(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeSupplementaryData(Llibcore/icu/LocaleData;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalZoneStrings()[[Ljava/lang/String;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSubclassObject()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAmPmStrings()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEras()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPatternChars()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonths()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShortMonths()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getShortStandAloneMonths()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShortStandAloneWeekdays()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShortWeekdays()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStandAloneMonths()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getStandAloneWeekdays()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTinyMonths()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTinyStandAloneMonths()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTinyStandAloneWeekdays()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTinyWeekdays()[Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeekdays()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZoneIndex(Ljava/lang/String;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZoneStrings()[[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZoneStringsWrapper()[[Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAmPmStrings([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEras([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocalPatternChars(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMonths([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShortMonths([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShortWeekdays([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWeekdays([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setZoneStrings([[Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DecimalFormat$1;": {"fields": {"$SwitchMap$java$math$RoundingMode:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/DecimalFormat;": {"fields": {"DOUBLE_FRACTION_DIGITS:I": {"value": "0x154", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOUBLE_INTEGER_DIGITS:I": {"value": "0x135", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_FRACTION_DIGITS:I": {"value": "0x7fffffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_INTEGER_DIGITS:I": {"value": "0x7fffffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentSerialVersion:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0xbff0362d872303aL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "icuDecimalFormat:Landroid/icu/text/DecimalFormat;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maximumFractionDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maximumIntegerDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimumFractionDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimumIntegerDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "roundingMode:Ljava/math/RoundingMode;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "symbols:Ljava/text/DecimalFormatSymbols;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/text/DecimalFormatSymbols;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareIcuRoundingIncrement(Landroid/icu/text/DecimalFormat;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convertRoundingMode(Ljava/math/RoundingMode;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/math/BigDecimal;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/math/BigInteger;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getIcuFieldPosition(Ljava/text/FieldPosition;)Ljava/text/FieldPosition;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initPattern(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toJavaFieldAttribute(Ljava/text/AttributedCharacterIterator$Attribute;)Ljava/text/NumberFormat$Field;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateFieldsFromIcu()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustForCurrencyDefaultFractionDigits()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "applyLocalizedPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(DLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(JLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatToCharacterIterator(Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrency()Ljava/util/Currency;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDecimalFormatSymbols()Ljava/text/DecimalFormatSymbols;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGroupingSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumFractionDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumIntegerDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimumFractionDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimumIntegerDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMultiplier()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNegativePrefix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNegativeSuffix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPositivePrefix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPositiveSuffix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoundingMode()Ljava/math/RoundingMode;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDecimalSeparatorAlwaysShown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isGroupingUsed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParseBigDecimal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParseIntegerOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Number;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurrency(Ljava/util/Currency;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDecimalFormatSymbols(Ljava/text/DecimalFormatSymbols;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDecimalSeparatorAlwaysShown(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGroupingSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGroupingUsed(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaximumFractionDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaximumIntegerDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinimumFractionDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinimumIntegerDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMultiplier(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNegativePrefix(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNegativeSuffix(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParseBigDecimal(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParseIntegerOnly(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPositivePrefix(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPositiveSuffix(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRoundingMode(Ljava/math/RoundingMode;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalizedPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DecimalFormatSymbols;": {"fields": {"currentSerialVersion:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x501d17990868939cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "NaN:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedIcuDFS:Landroid/icu/text/DecimalFormatSymbols;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currency:Ljava/util/Currency;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currencyInitialized:Z": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "currencySymbol:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decimalSeparator:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digit:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exponential:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exponentialSeparator:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "groupingSeparator:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "infinity:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "intlCurrencySymbol:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusSign:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monetarySeparator:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "patternSeparator:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "perMill:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "percent:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroDigit:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fromIcuInstance(Landroid/icu/text/DecimalFormatSymbols;)Ljava/text/DecimalFormatSymbols;": {"other": [".method", "protected", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance()Ljava/text/DecimalFormatSymbols;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/text/DecimalFormatSymbols;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialize(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeCurrency(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maybeStripMarkers(Ljava/lang/String;C)C": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrency()Ljava/util/Currency;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrencySymbol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDecimalSeparator()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDigit()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponentSeparator()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponentialSymbol()C": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGroupingSeparator()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIcuDecimalFormatSymbols()Landroid/icu/text/DecimalFormatSymbols;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInfinity()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInternationalCurrencySymbol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinusSign()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinusSignString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMonetaryDecimalSeparator()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNaN()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPatternSeparator()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPerMill()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPercent()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPercentString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getZeroDigit()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurrency(Ljava/util/Currency;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurrencySymbol(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDecimalSeparator(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDigit(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExponentSeparator(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExponentialSymbol(C)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setGroupingSeparator(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInfinity(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInternationalCurrencySymbol(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinusSign(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMonetaryDecimalSeparator(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNaN(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPatternSeparator(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPerMill(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPercent(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setZeroDigit(C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/DontCareFieldPosition$1;": {"fields": {"this$0:Ljava/text/DontCareFieldPosition;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/text/DontCareFieldPosition;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatted(ILjava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatted(Ljava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/DontCareFieldPosition;": {"fields": {"INSTANCE:Ljava/text/FieldPosition;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "noDelegate:Ljava/text/Format$FieldDelegate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFieldDelegate()Ljava/text/Format$FieldDelegate;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/EntryPair;": {"fields": {"entryName:Ljava/lang/String;": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fwd:Z": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/FieldPosition$Delegate-IA;": {"fields": {}, "methods": {}}, "Ljava/text/FieldPosition$Delegate;": {"fields": {"encounteredField:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/text/FieldPosition;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/text/FieldPosition;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/text/FieldPosition;Ljava/text/FieldPosition$Delegate-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatted(ILjava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatted(Ljava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/text/Format$Field;": {"fields": {"serialVersionUID:J": {"value": "0x3d7fbbd383b0f9bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/FieldPosition;": {"fields": {"attribute:Ljava/text/Format$Field;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "beginIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "field:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mmatchesField(Ljava/text/FieldPosition;Ljava/text/Format$Field;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mmatchesField(Ljava/text/FieldPosition;Ljava/text/Format$Field;I)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/Format$Field;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/text/Format$Field;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matchesField(Ljava/text/Format$Field;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchesField(Ljava/text/Format$Field;I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBeginIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEndIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getField()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFieldAttribute()Ljava/text/Format$Field;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFieldDelegate()Ljava/text/Format$FieldDelegate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBeginIndex(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEndIndex(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Format$FieldDelegate;": {"fields": {}, "methods": {"formatted(ILjava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatted(Ljava/text/Format$Field;Ljava/lang/Object;IILjava/lang/StringBuffer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/text/Format;": {"fields": {"serialVersionUID:J": {"value": "-0x42743ed16f0e7bdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createAttributedCharacterIterator(Ljava/lang/String;)Ljava/text/AttributedCharacterIterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createAttributedCharacterIterator(Ljava/lang/String;Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createAttributedCharacterIterator(Ljava/text/AttributedCharacterIterator;Ljava/text/AttributedCharacterIterator$Attribute;Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createAttributedCharacterIterator([Ljava/text/AttributedCharacterIterator;)Ljava/text/AttributedCharacterIterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatToCharacterIterator(Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/IcuIteratorWrapper;": {"fields": {"wrapped:Landroid/icu/text/BreakIterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Landroid/icu/text/BreakIterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkOffset(ILjava/text/CharacterIterator;)V": {"other": [".method", "protected", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "current()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "following(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getText()Ljava/text/CharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBoundary(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "preceding(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/text/CharacterIterator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/MergeCollation;": {"fields": {"BITARRAYMASK:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BYTEMASK:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BYTEPOWER:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "excess:Ljava/lang/StringBuffer;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastEntry:Ljava/text/PatternEntry;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "patterns:Ljava/util/ArrayList;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "saveEntry:Ljava/text/PatternEntry;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "statusArray:[B": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findLastEntry(Ljava/text/PatternEntry;Ljava/lang/StringBuffer;)I": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findLastWithNoExtension(I)Ljava/text/PatternEntry;": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fixEntry(Ljava/text/PatternEntry;)V": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emitPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emitPattern(Z)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCount()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getItemAt(I)Ljava/text/PatternEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPattern(Z)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/MessageFormat$Field;": {"fields": {"ARGUMENT:Ljava/text/MessageFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x6da23d2c7b46bfaaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/MessageFormat;": {"fields": {"DATE_TIME_MODIFIERS:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE_TIME_MODIFIER_KEYWORDS:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INITIAL_FORMATS:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_CURRENCY:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_DEFAULT:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_FULL:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_INTEGER:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_LONG:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_MEDIUM:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_PERCENT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIER_SHORT:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NUMBER_MODIFIER_KEYWORDS:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEG_INDEX:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEG_MODIFIER:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEG_RAW:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEG_TYPE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_CHOICE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_DATE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_KEYWORDS:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_NULL:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_NUMBER:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPE_TIME:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x59ea973e12bd01a8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "argumentNumbers:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formats:[Ljava/text/Format;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxOffset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsets:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "append(Ljava/lang/StringBuffer;Ljava/text/CharacterIterator;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyAndFixQuotes(Ljava/lang/String;IILjava/lang/StringBuilder;)V": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findKeyword(Ljava/lang/String;[Ljava/lang/String;)I": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeFormat(II[Ljava/lang/StringBuilder;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "subformat([Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;Ljava/util/List;)Ljava/lang/StringBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "applyPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format([Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatToCharacterIterator(Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormats()[Ljava/text/Format;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormatsByArgumentIndex()[Ljava/text/Format;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocale()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormat(ILjava/text/Format;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormatByArgumentIndex(ILjava/text/Format;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormats([Ljava/text/Format;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormatsByArgumentIndex([Ljava/text/Format;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocale(Ljava/util/Locale;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer$Form$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer$Form$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer$Form$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer$Form$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer$Form;": {"fields": {"$VALUES:[Ljava/text/Normalizer$Form;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NFC:Ljava/text/Normalizer$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NFD:Ljava/text/Normalizer$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NFKC:Ljava/text/Normalizer$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NFKD:Ljava/text/Normalizer$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "icuNormalizer:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgeticuNormalizer(Ljava/text/Normalizer$Form;)Ljava/util/function/Supplier;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/util/function/Supplier;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/text/Normalizer$Form;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/text/Normalizer$Form;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/Normalizer;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isNormalized(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalize(Ljava/lang/CharSequence;Ljava/text/Normalizer$Form;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/NumberFormat$Field;": {"fields": {"CURRENCY:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECIMAL_SEPARATOR:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXPONENT:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXPONENT_SIGN:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXPONENT_SYMBOL:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FRACTION:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GROUPING_SEPARATOR:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INTEGER:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PERCENT:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PERMILLE:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIGN:Ljava/text/NumberFormat$Field;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instanceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6802a038193ff37aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/NumberFormat;": {"fields": {"CURRENCYSTYLE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FRACTION_FIELD:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INTEGERSTYLE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INTEGER_FIELD:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NUMBERSTYLE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PERCENTSTYLE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentSerialVersion:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x20094c40ec82f818L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "groupingUsed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxFractionDigits:B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxIntegerDigits:B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maximumFractionDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maximumIntegerDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minFractionDigits:B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minIntegerDigits:B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimumFractionDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimumIntegerDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseIntegerOnly:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrencyInstance()Ljava/text/NumberFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrencyInstance(Ljava/util/Locale;)Ljava/text/NumberFormat;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance()Ljava/text/NumberFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/text/NumberFormat;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;I)Ljava/text/NumberFormat;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getIntegerInstance()Ljava/text/NumberFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIntegerInstance(Ljava/util/Locale;)Ljava/text/NumberFormat;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberInstance()Ljava/text/NumberFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberInstance(Ljava/util/Locale;)Ljava/text/NumberFormat;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPercentInstance()Ljava/text/NumberFormat;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPercentInstance(Ljava/util/Locale;)Ljava/text/NumberFormat;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(D)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(J)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(DLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(JLjava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrency()Ljava/util/Currency;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumFractionDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumIntegerDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimumFractionDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimumIntegerDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoundingMode()Ljava/math/RoundingMode;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isGroupingUsed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParseIntegerOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;)Ljava/lang/Number;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Number;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurrency(Ljava/util/Currency;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGroupingUsed(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaximumFractionDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaximumIntegerDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinimumFractionDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinimumIntegerDigits(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParseIntegerOnly(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRoundingMode(Ljava/math/RoundingMode;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/ParseException;": {"fields": {"serialVersionUID:J": {"value": "0x2583c2da188a0732L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "errorOffset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorOffset()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/ParsePosition;": {"fields": {"errorIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setErrorIndex(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIndex(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/PatternEntry$Parser;": {"fields": {"i:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newChars:Ljava/lang/StringBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newExtension:Ljava/lang/StringBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/text/PatternEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/text/PatternEntry;": {"fields": {"RESET:I": {"value": "-0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSET:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chars:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extension:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "strength:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/StringBuffer;Ljava/lang/StringBuffer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendQuoted(Ljava/lang/String;Ljava/lang/StringBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSpecialChar(C)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addToBuffer(Ljava/lang/StringBuffer;ZZLjava/text/PatternEntry;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendQuotedChars(Ljava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendQuotedExtension(Ljava/lang/StringBuffer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChars()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtension()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getStrength()I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/RuleBasedCollator;": {"fields": {}, "methods": {"(Landroid/icu/text/RuleBasedCollator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collAsICU()Landroid/icu/text/RuleBasedCollator;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCollationElementIterator(Ljava/lang/String;)Ljava/text/CollationElementIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCollationElementIterator(Ljava/text/CharacterIterator;)Ljava/text/CollationElementIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCollationKey(Ljava/lang/String;)Ljava/text/CollationKey;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRules()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/SimpleDateFormat;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GMT:Ljava/lang/String;": {"value": "\"GMT\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MILLIS_PER_MINUTE:I": {"value": "0xea60", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_INDEX_TO_CALENDAR_FIELD:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_INDEX_TO_DATE_FORMAT_FIELD:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN_INDEX_TO_DATE_FORMAT_FIELD_ID:[Ljava/text/DateFormat$Field;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REST_OF_STYLES:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_QUOTE_ASCII_CHAR:I": {"value": "0x64", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAG_QUOTE_CHARS:I": {"value": "0x65", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedNumberFormatData:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentSerialVersion:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x4243c9da93943590L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compiledPattern:[C": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultCenturyStart:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultCenturyStartYear:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatData:Ljava/text/DateFormatSymbols;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasFollowingMinusSign:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusSign:C": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalNumberFormat:Ljava/text/NumberFormat;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalNumberPattern:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timeZoneNames:Lcom/android/icu/text/ExtendedTimeZoneNames;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useDateFormatSymbols:Z": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroDigit:C": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IILjava/util/Locale;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/text/DateFormatSymbols;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyPatternImpl(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkNegativeNumberExpression()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compile(Ljava/lang/String;)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encode(IILjava/lang/StringBuilder;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/util/Date;Ljava/lang/StringBuffer;Ljava/text/Format$FieldDelegate;)Ljava/lang/StringBuffer;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatMonth(IIILjava/lang/StringBuffer;ZZII)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatWeekday(IIZZ)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDateTimeFormat(IILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDisplayNamesMap(ILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtendedTimeZoneNames()Lcom/android/icu/text/ExtendedTimeZoneNames;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimeZoneNames()Landroid/icu/text/TimeZoneNames;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialize(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeCalendar(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeDefaultCentury()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDigit(C)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchString(Ljava/lang/String;IILjava/util/Map;Ljava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchString(Ljava/lang/String;II[Ljava/lang/String;Ljava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchZoneString(Ljava/lang/String;I[Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseAmbiguousDatesAsAfter(Ljava/util/Date;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseInternal(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/util/Date;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseMonth(Ljava/lang/String;IIIILjava/text/ParsePosition;ZZLjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseWeekday(Ljava/lang/String;IIZZLjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "shouldObeyCount(II)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subFormat(IILjava/text/Format$FieldDelegate;Ljava/lang/StringBuffer;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subParse(Ljava/lang/String;IIIZ[ZLjava/text/ParsePosition;ZLjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subParseNumericZone(Ljava/lang/String;IIIZLjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subParseZoneString(Ljava/lang/String;ILjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subParseZoneStringFromICU(Ljava/lang/String;ILjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subParseZoneStringFromSymbols(Ljava/lang/String;ILjava/text/CalendarBuilder;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "translatePattern(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useDateFormatSymbols()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroPaddingNumber(IIILjava/lang/StringBuffer;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "applyLocalizedPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyPattern(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Date;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatToCharacterIterator(Ljava/lang/Object;)Ljava/text/AttributedCharacterIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get2DigitYearStart()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateFormatSymbols()Ljava/text/DateFormatSymbols;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set2DigitYearStart(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDateFormatSymbols(Ljava/text/DateFormatSymbols;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalizedPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/text/StringCharacterIterator;": {"fields": {"begin:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "text:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "current()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBeginIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEndIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIndex(I)C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setText(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Clock$FixedClock;": {"fields": {"serialVersionUID:J": {"value": "0x671e0bb19c27c88eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "instant:Ljava/time/Instant;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/Instant;Ljava/time/ZoneId;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "millis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Clock$OffsetClock;": {"fields": {"serialVersionUID:J": {"value": "0x1bdc04b7477ef050L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseClock:Ljava/time/Clock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:Ljava/time/Duration;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/Clock;Ljava/time/Duration;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "millis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Clock$SystemClock;": {"fields": {"OFFSET_SEED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UTC:Ljava/time/Clock$SystemClock;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x5d8b8814510769ebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/ZoneId;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "millis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Clock$TickClock;": {"fields": {"serialVersionUID:J": {"value": "0x5a4531089f29d952L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseClock:Ljava/time/Clock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tickNanos:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/Clock;J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "millis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Clock;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fixed(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offset(Ljava/time/Clock;Ljava/time/Duration;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "system(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "systemDefaultZone()Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "systemUTC()Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tick(Ljava/time/Clock;Ljava/time/Duration;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tickMillis(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tickMinutes(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tickSeconds(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "instant()Ljava/time/Instant;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "millis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/Clock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/DateTimeException;": {"fields": {"serialVersionUID:J": {"value": "-0x16a7842e31574fcfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/DayOfWeek;": {"fields": {"$VALUES:[Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENUMS:[Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FRIDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SATURDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THURSDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TUESDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEDNESDAY:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/DayOfWeek;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/time/DayOfWeek;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/DayOfWeek;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/DayOfWeek;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(J)Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(J)Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Duration$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/Duration$DurationUnits;": {"fields": {"UNITS:Ljava/util/List;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/Duration;": {"fields": {"BI_NANOS_PER_SECOND:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERN:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZERO:Ljava/time/Duration;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x2aba9d02d1c4f832L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nanos:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seconds:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "between(Ljava/time/temporal/Temporal;Ljava/time/temporal/Temporal;)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create(JI)Ljava/time/Duration;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(Ljava/math/BigDecimal;)Ljava/time/Duration;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(ZJJJJI)Ljava/time/Duration;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAmount;)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(JLjava/time/temporal/TemporalUnit;)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofDays(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofHours(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofMillis(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofMinutes(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofNanos(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofSeconds(J)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofSeconds(JJ)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/Duration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseFraction(Ljava/lang/CharSequence;Ljava/lang/String;I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseNumber(Ljava/lang/CharSequence;Ljava/lang/String;ILjava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JJ)Ljava/time/Duration;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/Duration;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toBigDecimalSeconds()Ljava/math/BigDecimal;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "abs()Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addTo(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/Duration;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dividedBy(Ljava/time/Duration;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dividedBy(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeconds()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnits()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isZero()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/Duration;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMillis(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multipliedBy(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negated()Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/Duration;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMillis(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractFrom(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toDays()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toDaysPart()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHours()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHoursPart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMillis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMillisPart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMinutes()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMinutesPart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toNanos()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toNanosPart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSeconds()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSecondsPart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNanos(I)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSeconds(J)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/Instant$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Instant$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/Instant;": {"fields": {"EPOCH:Ljava/time/Instant;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX:Ljava/time/Instant;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_SECOND:J": {"value": "0x701cd2fa9578ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN:Ljava/time/Instant;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_SECOND:J": {"value": "-0x701cefeb9bec00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x93d170fdcc5dce4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nanos:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seconds:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(JI)Ljava/time/Instant;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nanosUntil(Ljava/time/Instant;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEpochMilli(J)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEpochSecond(J)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEpochSecond(JJ)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/Instant;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JJ)Ljava/time/Instant;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/Instant;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "secondsUntil(Ljava/time/Instant;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atOffset(Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZone(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/Instant;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEpochSecond()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/Instant;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/Instant;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMillis(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMillis(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochMilli()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/LocalDate$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalDate$$ExternalSyntheticLambda1;": {"fields": {"f$0:J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JJ)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalDate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/time/LocalDate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/LocalDate;JJ)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalDate$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/LocalDate$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalDate;": {"fields": {"DAYS_0000_TO_1970:J": {"value": "0xafaa8L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAYS_PER_CYCLE:I": {"value": "0x23ab1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EPOCH:Ljava/time/LocalDate;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX:Ljava/time/LocalDate;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN:Ljava/time/LocalDate;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x28d617b1d8f33f1eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "day:S": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "month:S": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "year:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(III)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(III)Ljava/time/LocalDate;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get0(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProlepticMonth()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$datesUntil$0(JJJ)Ljava/time/LocalDate;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "monthsUntil(Ljava/time/LocalDate;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(ILjava/time/Month;I)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEpochDay(J)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ofYearDay(II)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/LocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/LocalDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resolvePreviousValid(III)Ljava/time/LocalDate;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atStartOfDay()Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atStartOfDay(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(II)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(III)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(IIII)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(Ljava/time/LocalTime;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(Ljava/time/OffsetTime;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/ChronoLocalDate;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo0(Ljava/time/LocalDate;)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "datesUntil(Ljava/time/LocalDate;)Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "datesUntil(Ljava/time/LocalDate;Ljava/time/Period;)Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "daysUntil(Ljava/time/LocalDate;)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/IsoChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/IsoEra;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$datesUntil$1$java-time-LocalDate(JJJ)Ljava/time/LocalDate;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusWeeks(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusWeeks(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond(Ljava/time/LocalTime;Ljava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfMonth(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfYear(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYear(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/LocalDateTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalDateTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/LocalDateTime;": {"fields": {"MAX:Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN:Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x56266aa6a95fff2eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "date:Ljava/time/LocalDate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "time:Ljava/time/LocalTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/LocalDate;Ljava/time/LocalTime;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareTo0(Ljava/time/LocalDateTime;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIII)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIIII)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIIIII)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(ILjava/time/Month;III)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(ILjava/time/Month;IIII)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(ILjava/time/Month;IIIII)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalDate;Ljava/time/LocalTime;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEpochSecond(JILjava/time/ZoneOffset;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/LocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusWithOverflow(Ljava/time/LocalDate;JJJJI)Ljava/time/LocalDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/LocalDateTime;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "with(Ljava/time/LocalDate;Ljava/time/LocalTime;)Ljava/time/LocalDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atOffset(Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZone(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZone(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/ChronoLocalDateTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHour()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinute()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecond()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusWeeks(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusWeeks(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfMonth(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfYear(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withHour(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMinute(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNano(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSecond(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYear(I)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/LocalTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/LocalTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/LocalTime;": {"fields": {"HOURS:[Ljava/time/LocalTime;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOURS_PER_DAY:I": {"value": "0x18", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX:Ljava/time/LocalTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MICROS_PER_DAY:J": {"value": "0x141dd76000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIDNIGHT:Ljava/time/LocalTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLIS_PER_DAY:J": {"value": "0x5265c00L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN:Ljava/time/LocalTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTES_PER_DAY:I": {"value": "0x5a0", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINUTES_PER_HOUR:I": {"value": "0x3c", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_DAY:J": {"value": "0x4e94914f0000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_HOUR:J": {"value": "0x34630b8a000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_MILLI:J": {"value": "0xf4240L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOS_PER_MINUTE:J": {"value": "0xdf8475800L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOS_PER_SECOND:J": {"value": "0x3b9aca00L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NOON:Ljava/time/LocalTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECONDS_PER_DAY:I": {"value": "0x15180", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_HOUR:I": {"value": "0xe10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_MINUTE:I": {"value": "0x3c", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x5904a8b626e1a4f1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "hour:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minute:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nano:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "second:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIII)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(IIII)Ljava/time/LocalTime;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get0(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(II)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIII)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofNanoOfDay(J)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofSecondOfDay(J)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/LocalTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/LocalTime;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atDate(Ljava/time/LocalDate;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atOffset(Ljava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/LocalTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHour()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinute()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecond()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/LocalTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/LocalTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond(Ljava/time/LocalDate;Ljava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toNanoOfDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSecondOfDay()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withHour(I)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMinute(I)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNano(I)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSecond(I)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/Month$1;": {"fields": {"$SwitchMap$java$time$Month:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/Month;": {"fields": {"$VALUES:[Ljava/time/Month;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "APRIL:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AUGUST:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECEMBER:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENUMS:[Ljava/time/Month;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FEBRUARY:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JANUARY:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JULY:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JUNE:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MARCH:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAY:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOVEMBER:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OCTOBER:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SEPTEMBER:Ljava/time/Month;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/Month;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/time/Month;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/Month;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/Month;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfYear(Z)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstMonthOfQuarter()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length(Z)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "maxLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(J)Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(J)Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/MonthDay$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/MonthDay$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/MonthDay;": {"fields": {"PARSER:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0xd0888991b3ac078L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "day:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "month:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(II)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/Month;I)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/MonthDay;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/MonthDay;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atYear(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/MonthDay;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/MonthDay;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/MonthDay;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidYear(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/Month;)Ljava/time/MonthDay;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfMonth(I)Ljava/time/MonthDay;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/MonthDay;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/OffsetDateTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/OffsetDateTime$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/OffsetDateTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/OffsetDateTime;": {"fields": {"MAX:Ljava/time/OffsetDateTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN:Ljava/time/OffsetDateTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x1fbfbc5d57d80062L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dateTime:Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"$r8$lambda$OESTkflOrxF5tQIfcNoGdUDgOBs(Ljava/time/OffsetDateTime;Ljava/time/OffsetDateTime;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "compareInstant(Ljava/time/OffsetDateTime;Ljava/time/OffsetDateTime;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIIIIILjava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalDate;Ljava/time/LocalTime;Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/OffsetDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/OffsetDateTime;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "timeLineOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZoneSameInstant(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZoneSimilarLocal(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/OffsetDateTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHour()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinute()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecond()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/OffsetDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/OffsetDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/OffsetDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusWeeks(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusWeeks(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toInstant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDateTime()Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toOffsetTime()Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toZonedDateTime()Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfMonth(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfYear(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withHour(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMinute(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNano(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withOffsetSameInstant(Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withOffsetSameLocal(Ljava/time/ZoneOffset;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSecond(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYear(I)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/OffsetTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/OffsetTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/OffsetTime;": {"fields": {"MAX:Ljava/time/OffsetTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN:Ljava/time/OffsetTime;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x64d0affdfec1386cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "offset:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "time:Ljava/time/LocalTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/LocalTime;Ljava/time/ZoneOffset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIILjava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalTime;Ljava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/OffsetTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/OffsetTime;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toEpochNano()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "with(Ljava/time/LocalTime;Ljava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atDate(Ljava/time/LocalDate;)Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/OffsetTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHour()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinute()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecond()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/OffsetTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/OffsetTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/OffsetTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond(Ljava/time/LocalDate;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withHour(I)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMinute(I)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNano(I)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withOffsetSameInstant(Ljava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withOffsetSameLocal(Ljava/time/ZoneOffset;)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSecond(I)Ljava/time/OffsetTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/Period;": {"fields": {"PATTERN:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SUPPORTED_UNITS:Ljava/util/List;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZERO:Ljava/time/Period;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0xcbe97ad039fbcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "days:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "months:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "years:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(III)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "between(Ljava/time/LocalDate;Ljava/time/LocalDate;)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "charMatch(Ljava/lang/CharSequence;IIC)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(III)Ljava/time/Period;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofDays(I)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofMonths(I)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofWeeks(I)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofYears(I)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/Period;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseNumber(Ljava/lang/CharSequence;III)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/Period;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "validateChrono(Ljava/time/temporal/TemporalAccessor;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "addTo(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/IsoChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDays()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonths()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnits()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYears()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isZero()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multipliedBy(I)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multipliedBy(I)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negated()Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negated()Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalized()Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalized()Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractFrom(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toTotalMonths()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDays(I)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonths(I)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYears(I)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/Ser;": {"fields": {"DURATION_TYPE:B": {"value": "0x1t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSTANT_TYPE:B": {"value": "0x2t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCAL_DATE_TIME_TYPE:B": {"value": "0x5t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCAL_DATE_TYPE:B": {"value": "0x3t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCAL_TIME_TYPE:B": {"value": "0x4t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MONTH_DAY_TYPE:B": {"value": "0xdt", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSET_DATE_TIME_TYPE:B": {"value": "0xat", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSET_TIME_TYPE:B": {"value": "0x9t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PERIOD_TYPE:B": {"value": "0xet", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "YEAR_MONTH_TYPE:B": {"value": "0xct", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "YEAR_TYPE:B": {"value": "0xbt", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZONE_DATE_TIME_TYPE:B": {"value": "0x6t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZONE_OFFSET_TYPE:B": {"value": "0x8t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZONE_REGION_TYPE:B": {"value": "0x7t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x6aa27b45e4ddb74eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "object:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(BLjava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/ObjectInput;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readInternal(BLjava/io/ObjectInput;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeInternal(BLjava/lang/Object;Ljava/io/ObjectOutput;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Year$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/Year$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/Year;": {"fields": {"MAX_VALUE:I": {"value": "0x3b9ac9ff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_VALUE:I": {"value": "-0x3b9ac9ff", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PARSER:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x51d949b44ef9efL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "year:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeap(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/Year;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/Year;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atDay(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atMonth(I)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atMonth(Ljava/time/Month;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atMonthDay(Ljava/time/MonthDay;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/Year;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/Year;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/Year;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeap()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidMonthDay(Ljava/time/MonthDay;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/Year;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/YearMonth$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/YearMonth$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/ZoneId$1;": {"fields": {"this$0:Ljava/time/ZoneId;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/ZoneId;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/YearMonth;": {"fields": {"PARSER:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x3a0e6ceaf57ebbc6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "month:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "year:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProlepticMonth()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(II)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(ILjava/time/Month;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/YearMonth;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/YearMonth;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "with(II)Ljava/time/YearMonth;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atDay(I)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atEndOfMonth()Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/YearMonth;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/YearMonth;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/YearMonth;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidDay(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYear(I)Ljava/time/YearMonth;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/ZoneId;": {"fields": {"SHORT_IDS:Ljava/util/Map;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x798cab446e6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableZoneIds()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/String;)Ljava/time/ZoneId;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/String;Ljava/util/Map;)Ljava/time/ZoneId;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/String;Z)Ljava/time/ZoneId;": {"other": [".method", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "ofOffset(Ljava/lang/String;Ljava/time/ZoneOffset;)Ljava/time/ZoneId;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofWithPrefix(Ljava/lang/String;IZ)Ljava/time/ZoneId;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "systemDefault()Ljava/time/ZoneId;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toTemporal()Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRules()Ljava/time/zone/ZoneRules;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalized()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/DataOutput;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/ZoneOffset;": {"fields": {"ID_CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_SECONDS:I": {"value": "0xfd20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECONDS_CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UTC:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x20b8141d7a029c21L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "id:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "totalSeconds:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buildId(I)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/String;)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofHours(I)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofHoursMinutes(II)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofHoursMinutesSeconds(III)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofTotalSeconds(I)Ljava/time/ZoneOffset;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseNumber(Ljava/lang/CharSequence;IZ)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/ZoneOffset;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "totalSeconds(III)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "validate(III)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/ZoneOffset;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRules()Ljava/time/zone/ZoneRules;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalSeconds()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/ZoneRegion;": {"fields": {"serialVersionUID:J": {"value": "0x746262147bb70e18L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "id:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rules:Ljava/time/zone/ZoneRules;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/time/zone/ZoneRules;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkName(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ofId(Ljava/lang/String;Z)Ljava/time/ZoneRegion;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/ZoneId;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRules()Ljava/time/zone/ZoneRules;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/ZonedDateTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/ZonedDateTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/ZonedDateTime;": {"fields": {"serialVersionUID:J": {"value": "-0x56e37a54888537c2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dateTime:Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneId;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(JILjava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(IIIIIIILjava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalDate;Ljava/time/LocalTime;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/LocalDateTime;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofInstant(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofLenient(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofLocal(Ljava/time/LocalDateTime;Ljava/time/ZoneId;Ljava/time/ZoneOffset;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofStrict(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/ZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/ZonedDateTime;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resolveInstant(Ljava/time/LocalDateTime;)Ljava/time/ZonedDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveLocal(Ljava/time/LocalDateTime;)Ljava/time/ZonedDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveOffset(Ljava/time/ZoneOffset;)Ljava/time/ZonedDateTime;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHour()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinute()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonthValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNano()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecond()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusHours(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMinutes(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusMonths(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusNanos(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusSeconds(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusWeeks(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusYears(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusHours(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMinutes(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusMonths(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusNanos(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusWeeks(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusYears(J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDateTime()Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDateTime()Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toOffsetDateTime()Ljava/time/OffsetDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncatedTo(Ljava/time/temporal/TemporalUnit;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfMonth(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDayOfYear(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withEarlierOffsetAtOverlap()Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withEarlierOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedOffsetZone()Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withHour(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withLaterOffsetAtOverlap()Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withLaterOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMinute(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withMonth(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNano(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withSecond(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withYear(I)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameInstant(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameInstant(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameLocal(Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameLocal(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/AbstractChronology;": {"fields": {"CHRONOS_BY_ID:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CHRONOS_BY_TYPE:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableChronologies()Ljava/util/Set;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initCache()Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/lang/String;)Ljava/time/chrono/Chronology;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of0(Ljava/lang/String;)Ljava/time/chrono/Chronology;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofLocale(Ljava/util/Locale;)Ljava/time/chrono/Chronology;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/Chronology;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "registerChrono(Ljava/time/chrono/Chronology;)Ljava/time/chrono/Chronology;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "registerChrono(Ljava/time/chrono/Chronology;Ljava/lang/String;)Ljava/time/chrono/Chronology;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addFieldValue(Ljava/util/Map;Ljava/time/temporal/ChronoField;J)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/Chronology;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveAligned(Ljava/time/chrono/ChronoLocalDate;JJJ)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveProlepticMonth(Ljava/util/Map;Ljava/time/format/ResolverStyle;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYAA(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYAD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMAA(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMAD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYearOfEra(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoLocalDate$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoLocalDate;": {"fields": {}, "methods": {"from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$timeLineOrder$493d4938$1(Ljava/time/chrono/ChronoLocalDate;Ljava/time/chrono/ChronoLocalDate;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeLineOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/ChronoLocalDate;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/chrono/ChronoLocalDate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoLocalDateImpl$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoLocalDateImpl;": {"fields": {"serialVersionUID:J": {"value": "0x572fb054bf61a0b8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "daysUntil(Ljava/time/chrono/ChronoLocalDate;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureValid(Ljava/time/chrono/Chronology;Ljava/time/temporal/Temporal;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monthsUntil(Ljava/time/chrono/ChronoLocalDate;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoLocalDateTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoLocalDateTime;": {"fields": {}, "methods": {"from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$timeLineOrder$b9959cb5$1(Ljava/time/chrono/ChronoLocalDateTime;Ljava/time/chrono/ChronoLocalDateTime;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeLineOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "atZone(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/ChronoLocalDateTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/chrono/ChronoLocalDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond(Ljava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toInstant(Ljava/time/ZoneOffset;)Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoLocalDateTimeImpl$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"fields": {"HOURS_PER_DAY:I": {"value": "0x18", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MICROS_PER_DAY:J": {"value": "0x141dd76000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MILLIS_PER_DAY:J": {"value": "0x5265c00L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MINUTES_PER_DAY:I": {"value": "0x5a0", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MINUTES_PER_HOUR:I": {"value": "0x3c", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOS_PER_DAY:J": {"value": "0x4e94914f0000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOS_PER_HOUR:J": {"value": "0x34630b8a000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOS_PER_MINUTE:J": {"value": "0xdf8475800L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOS_PER_SECOND:J": {"value": "0x3b9aca00L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECONDS_PER_DAY:I": {"value": "0x15180", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECONDS_PER_HOUR:I": {"value": "0xe10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECONDS_PER_MINUTE:I": {"value": "0x3c", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x3f3a2d24660eebe2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "date:Ljava/time/chrono/ChronoLocalDate;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "time:Ljava/time/LocalTime;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/ChronoLocalDate;Ljava/time/LocalTime;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureValid(Ljava/time/chrono/Chronology;Ljava/time/temporal/Temporal;)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(Ljava/time/chrono/ChronoLocalDate;Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusDays(J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusHours(J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusMinutes(J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusNanos(J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusWithOverflow(Ljava/time/chrono/ChronoLocalDate;JJJJ)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "with(Ljava/time/temporal/Temporal;Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "atZone(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusSeconds(J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoPeriod;": {"fields": {}, "methods": {"between(Ljava/time/chrono/ChronoLocalDate;Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addTo(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnits()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isZero()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multipliedBy(I)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negated()Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalized()Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractFrom(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoPeriodImpl;": {"fields": {"SUPPORTED_UNITS:Ljava/util/List;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0xd5c8c11b1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "chrono:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "days:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "months:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "years:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/chrono/Chronology;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "monthRange()J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/ChronoPeriodImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "validateAmount(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriodImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validateChrono(Ljava/time/temporal/TemporalAccessor;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addTo(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnits()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isZero()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "multipliedBy(I)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalized()Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractFrom(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoZonedDateTime$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoZonedDateTime$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoZonedDateTime;": {"fields": {}, "methods": {"from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$timeLineOrder$f56e6d02$1(Ljava/time/chrono/ChronoZonedDateTime;Ljava/time/chrono/ChronoZonedDateTime;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeLineOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/ChronoZonedDateTime;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/format/DateTimeFormatter;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAfter(Ljava/time/chrono/ChronoZonedDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBefore(Ljava/time/chrono/ChronoZonedDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEqual(Ljava/time/chrono/ChronoZonedDateTime;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toInstant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDate()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDateTime()Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withEarlierOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withLaterOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameInstant(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameLocal(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ChronoZonedDateTimeImpl$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ChronoZonedDateTimeImpl;": {"fields": {"serialVersionUID:J": {"value": "-0x4905b7f16d4b26a7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dateTime:Ljava/time/chrono/ChronoLocalDateTimeImpl;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/ChronoLocalDateTimeImpl;Ljava/time/ZoneOffset;Ljava/time/ZoneId;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTimeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureValid(Ljava/time/chrono/Chronology;Ljava/time/temporal/Temporal;)Ljava/time/chrono/ChronoZonedDateTimeImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ofBest(Ljava/time/chrono/ChronoLocalDateTimeImpl;Ljava/time/ZoneId;Ljava/time/ZoneOffset;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ofInstant(Ljava/time/chrono/Chronology;Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTimeImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocalDateTime()Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withEarlierOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withLaterOffsetAtOverlap()Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameInstant(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZoneSameLocal(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/Chronology$1;": {"fields": {"this$0:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/Chronology;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/Chronology;": {"fields": {}, "methods": {"from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/Chronology;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableChronologies()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/String;)Ljava/time/chrono/Chronology;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofLocale(Ljava/util/Locale;)Ljava/time/chrono/Chronology;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/chrono/Chronology;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "epochSecond(IIIIIILjava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epochSecond(Ljava/time/chrono/Era;IIIIIILjava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(J)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "period(III)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/Era;": {"fields": {}, "methods": {"adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/HijrahChronology$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/HijrahChronology;": {"fields": {"INSTANCE:Ljava/time/chrono/HijrahChronology;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_ID:Ljava/lang/String;": {"value": "\"id\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KEY_ISO_START:Ljava/lang/String;": {"value": "\"iso-start\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KEY_TYPE:Ljava/lang/String;": {"value": "\"type\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KEY_VERSION:Ljava/lang/String;": {"value": "\"version\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESOURCE_PREFIX:Ljava/lang/String;": {"value": "\"hijrah-config-\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RESOURCE_SUFFIX:Ljava/lang/String;": {"value": "\".properties\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2b668b59cb61d531L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "calendarType:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hijrahEpochMonthStartDays:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hijrahStartEpochMonth:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initComplete:Z": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxEpochDay:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxMonthLength:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxYearLength:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minEpochDay:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minMonthLength:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minYearLength:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeId:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkCalendarInit()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createEpochMonths(IIILjava/util/Map;)[I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "epochDayToEpochMonth(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "epochMonthLength(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "epochMonthToEpochDay(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "epochMonthToMonth(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "epochMonthToYear(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadCalendarData()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseMonths(Ljava/lang/String;)[I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseYMD(Ljava/lang/String;)[I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readConfigProperties(Ljava/lang/String;)Ljava/util/Properties;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "yearMonthToDayOfYear(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "yearToEpochMonth(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkValidDayOfYear(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkValidMonth(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkValidYear(J)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/HijrahEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfYear(II)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEpochDay(III)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHijrahDateInfo(I)[I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumDayOfYear()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMaximumMonthLength()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMaximumYear()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMinimumMonthLength()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMinimumYear()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMonthLength(II)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSmallestMaximumDayOfYear()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getYearLength(I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLeapYear(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/HijrahDate$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/HijrahDate;": {"fields": {"serialVersionUID:J": {"value": "-0x4846033461a5e4e4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "chrono:Ljava/time/chrono/HijrahChronology;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dayOfMonth:I": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monthOfYear:I": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prolepticYear:I": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/HijrahChronology;III)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/chrono/HijrahChronology;J)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDayOfYear()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEraValue()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProlepticMonth()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/chrono/HijrahDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/chrono/HijrahChronology;III)Ljava/time/chrono/HijrahDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofEpochDay(Ljava/time/chrono/HijrahChronology;J)Ljava/time/chrono/HijrahDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resolvePreviousValid(III)Ljava/time/chrono/HijrahDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/HijrahChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/HijrahEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusDays(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusDays(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/HijrahDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withVariant(Ljava/time/chrono/HijrahChronology;)Ljava/time/chrono/HijrahDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/HijrahEra;": {"fields": {"$VALUES:[Ljava/time/chrono/HijrahEra;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AH:Ljava/time/chrono/HijrahEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(I)Ljava/time/chrono/HijrahEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/chrono/HijrahEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/chrono/HijrahEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/IsoChronology;": {"fields": {"DAYS_0000_TO_1970:J": {"value": "0xafaa8L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSTANCE:Ljava/time/chrono/IsoChronology;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x13fd57b046d9ef27L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numberOfDaysOfMonth(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "date(III)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "epochSecond(IIIIIILjava/time/ZoneOffset;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/IsoEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "period(III)Ljava/time/Period;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "period(III)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveProlepticMonth(Ljava/util/Map;Ljava/time/format/ResolverStyle;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/LocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMD(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolveYearOfEra(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/LocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYearOfEra(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/IsoEra;": {"fields": {"$VALUES:[Ljava/time/chrono/IsoEra;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BCE:Ljava/time/chrono/IsoEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CE:Ljava/time/chrono/IsoEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(I)Ljava/time/chrono/IsoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/chrono/IsoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/chrono/IsoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/JapaneseChronology$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/JapaneseChronology;": {"fields": {"INSTANCE:Ljava/time/chrono/JapaneseChronology;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JCAL:Lsun/util/calendar/LocalGregorianCalendar;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOCALE:Ljava/util/Locale;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6623c4799cb0ddcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createCalendar()Ljava/util/Calendar;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prolepticYearLenient(Ljava/time/chrono/JapaneseEra;I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resolveYD(Ljava/time/chrono/JapaneseEra;ILjava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveYMD(Ljava/time/chrono/JapaneseEra;ILjava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrentEra()Ljava/time/chrono/JapaneseEra;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveYearOfEra(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/JapaneseDate$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/JapaneseDate;": {"fields": {"MEIJI_6_ISODATE:Ljava/time/LocalDate;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x43cbddbf9310f03L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "era:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isoDate:Ljava/time/LocalDate;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "yearOfEra:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/LocalDate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/chrono/JapaneseEra;ILjava/time/LocalDate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now()Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/chrono/JapaneseEra;III)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofYearDay(Ljava/time/chrono/JapaneseEra;II)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toPrivateJapaneseDate(Ljava/time/LocalDate;)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "with(Ljava/time/LocalDate;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withYear(I)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withYear(Ljava/time/chrono/JapaneseEra;I)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/JapaneseChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/JapaneseEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusDays(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusDays(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/JapaneseDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/JapaneseDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/JapaneseEra;": {"fields": {"ERA_CONFIG:[Lsun/util/calendar/Era;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ERA_OFFSET:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEISEI:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KNOWN_ERAS:[Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MEIJI:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "N_ERA_CONSTANTS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REIWA:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHOWA:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAISHO:Ljava/time/chrono/JapaneseEra;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x145a0d680453ed8aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "eraValue:I": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "since:Ljava/time/LocalDate;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/time/LocalDate;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/LocalDate;)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(I)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ordinal(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privateEraFrom(Ljava/time/LocalDate;)Lsun/util/calendar/Era;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toJapaneseEra(Lsun/util/calendar/Era;)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/chrono/JapaneseEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/chrono/JapaneseEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getAbbreviation()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrivateEra()Lsun/util/calendar/Era;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/MinguoChronology$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/MinguoChronology;": {"fields": {"INSTANCE:Ljava/time/chrono/MinguoChronology;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEARS_DIFFERENCE:I": {"value": "0x777", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0xe6dfcf4568e9fbbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/MinguoEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/MinguoDate$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/MinguoDate;": {"fields": {"serialVersionUID:J": {"value": "0x120bd9be64a3de1eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "isoDate:Ljava/time/LocalDate;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/LocalDate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProlepticMonth()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProlepticYear()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/chrono/MinguoDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "with(Ljava/time/LocalDate;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/MinguoChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/MinguoEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusDays(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusDays(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/MinguoDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/MinguoDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/MinguoEra;": {"fields": {"$VALUES:[Ljava/time/chrono/MinguoEra;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BEFORE_ROC:Ljava/time/chrono/MinguoEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROC:Ljava/time/chrono/MinguoEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(I)Ljava/time/chrono/MinguoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/chrono/MinguoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/chrono/MinguoEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/Ser;": {"fields": {"CHRONO_LOCAL_DATE_TIME_TYPE:B": {"value": "0x2t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHRONO_PERIOD_TYPE:B": {"value": "0x9t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHRONO_TYPE:B": {"value": "0x1t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHRONO_ZONE_DATE_TIME_TYPE:B": {"value": "0x3t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HIJRAH_DATE_TYPE:B": {"value": "0x6t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JAPANESE_DATE_TYPE:B": {"value": "0x4t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JAPANESE_ERA_TYPE:B": {"value": "0x5t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MINGUO_DATE_TYPE:B": {"value": "0x7t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THAIBUDDHIST_DATE_TYPE:B": {"value": "0x8t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x54b386e71d87ec81L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "object:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(BLjava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/ObjectInput;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readInternal(BLjava/io/ObjectInput;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeInternal(BLjava/lang/Object;Ljava/io/ObjectOutput;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ThaiBuddhistChronology$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ThaiBuddhistChronology;": {"fields": {"ERA_FULL_NAMES:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ERA_NARROW_NAMES:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ERA_SHORT_NAMES:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FALLBACK_LANGUAGE:Ljava/lang/String;": {"value": "\"en\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INSTANCE:Ljava/time/chrono/ThaiBuddhistChronology;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TARGET_LANGUAGE:Ljava/lang/String;": {"value": "\"th\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "YEARS_DIFFERENCE:I": {"value": "0x21f", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x26862bec417f21daL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "date(III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(III)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/chrono/Era;III)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "date(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateEpochDay(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow()Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/Clock;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateNow(Ljava/time/ZoneId;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(II)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "dateYearDay(Ljava/time/chrono/Era;II)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraOf(I)Ljava/time/chrono/ThaiBuddhistEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eras()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prolepticYear(Ljava/time/chrono/Era;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/ChronoField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveDate(Ljava/util/Map;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "zonedDateTime(Ljava/time/Instant;Ljava/time/ZoneId;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zonedDateTime(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ChronoZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/chrono/ThaiBuddhistDate;": {"fields": {"serialVersionUID:J": {"value": "-0x790bcfffa3423007L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "isoDate:Ljava/time/LocalDate;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/LocalDate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProlepticMonth()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProlepticYear()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "now()Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/Clock;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "now(Ljava/time/ZoneId;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(III)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "with(Ljava/time/LocalDate;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "atTime(Ljava/time/LocalTime;)Ljava/time/chrono/ChronoLocalDateTime;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/ThaiBuddhistChronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/Era;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEra()Ljava/time/chrono/ThaiBuddhistEra;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lengthOfMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusDays(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusMonths(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusWeeks(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minusYears(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plusDays(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusDays(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusMonths(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusWeeks(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "plusYears(J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochDay()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/chrono/ChronoLocalDate;)Ljava/time/chrono/ChronoPeriod;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/chrono/ThaiBuddhistDate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ThaiBuddhistDate$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/chrono/ThaiBuddhistEra;": {"fields": {"$VALUES:[Ljava/time/chrono/ThaiBuddhistEra;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BE:Ljava/time/chrono/ThaiBuddhistEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BEFORE_BE:Ljava/time/chrono/ThaiBuddhistEra;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(I)Ljava/time/chrono/ThaiBuddhistEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/time/chrono/ThaiBuddhistEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/chrono/ThaiBuddhistEra;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatter$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatter$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatter$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatter$ClassicFormat;": {"fields": {"formatter:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseType:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/DateTimeFormatter;Ljava/time/temporal/TemporalQuery;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/lang/Object;Ljava/lang/StringBuffer;Ljava/text/FieldPosition;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseObject(Ljava/lang/String;Ljava/text/ParsePosition;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatter;": {"fields": {"BASIC_ISO_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_DATE_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_INSTANT:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_LOCAL_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_LOCAL_DATE_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_LOCAL_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_OFFSET_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_OFFSET_DATE_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_OFFSET_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_ORDINAL_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_WEEK_DATE:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ISO_ZONED_DATE_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PARSED_EXCESS_DAYS:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PARSED_LEAP_SECOND:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC_1123_DATE_TIME:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chrono:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decimalStyle:Ljava/time/format/DecimalStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printerParser:Ljava/time/format/DateTimeFormatterBuilder$CompositePrinterParser;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolverFields:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolverStyle:Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetresolverFields(Ljava/time/format/DateTimeFormatter;)Ljava/util/Set;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetresolverStyle(Ljava/time/format/DateTimeFormatter;)Ljava/time/format/ResolverStyle;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mparseResolved0(Ljava/time/format/DateTimeFormatter;Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mparseUnresolved0(Ljava/time/format/DateTimeFormatter;Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/format/DateTimeParseContext;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/format/DateTimeFormatterBuilder$CompositePrinterParser;Ljava/util/Locale;Ljava/time/format/DecimalStyle;Ljava/time/format/ResolverStyle;Ljava/util/Set;Ljava/time/chrono/Chronology;Ljava/time/ZoneId;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createError(Ljava/lang/CharSequence;Ljava/lang/RuntimeException;)Ljava/time/format/DateTimeParseException;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$static$0(Ljava/time/temporal/TemporalAccessor;)Ljava/time/Period;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$static$1(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Boolean;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ofLocalizedDate(Ljava/time/format/FormatStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofLocalizedDateTime(Ljava/time/format/FormatStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofLocalizedDateTime(Ljava/time/format/FormatStyle;Ljava/time/format/FormatStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofLocalizedTime(Ljava/time/format/FormatStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofPattern(Ljava/lang/String;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofPattern(Ljava/lang/String;Ljava/util/Locale;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseResolved0(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseUnresolved0(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/format/DateTimeParseContext;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsedExcessDays()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parsedLeapSecond()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatTo(Ljava/time/temporal/TemporalAccessor;Ljava/lang/Appendable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChronology()Ljava/time/chrono/Chronology;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDecimalStyle()Ljava/time/format/DecimalStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocale()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResolverFields()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResolverStyle()Ljava/time/format/ResolverStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localizedBy(Ljava/util/Locale;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Ljava/lang/CharSequence;Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseBest(Ljava/lang/CharSequence;[Ljava/time/temporal/TemporalQuery;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseUnresolved(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFormat()Ljava/text/Format;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFormat(Ljava/time/temporal/TemporalQuery;)Ljava/text/Format;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toPrinterParser(Z)Ljava/time/format/DateTimeFormatterBuilder$CompositePrinterParser;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withChronology(Ljava/time/chrono/Chronology;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDecimalStyle(Ljava/time/format/DecimalStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withLocale(Ljava/util/Locale;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withResolverFields(Ljava/util/Set;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withResolverFields([Ljava/time/temporal/TemporalField;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withResolverStyle(Ljava/time/format/ResolverStyle;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZone(Ljava/time/ZoneId;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$1;": {"fields": {"this$0:Ljava/time/format/DateTimeFormatterBuilder;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$store:Ljava/time/format/DateTimeTextProvider$LocaleStore;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/DateTimeFormatterBuilder;Ljava/time/format/DateTimeTextProvider$LocaleStore;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getText(Ljava/time/chrono/Chronology;Ljava/time/temporal/TemporalField;JLjava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getText(Ljava/time/temporal/TemporalField;JLjava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTextIterator(Ljava/time/chrono/Chronology;Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTextIterator(Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$3;": {"fields": {"$SwitchMap$java$time$format$SignStyle:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser;": {"fields": {"literal:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(C)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$ChronoPrinterParser;": {"fields": {"textStyle:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/TextStyle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChronologyName(Ljava/time/chrono/Chronology;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$getChronologyName$0(Ljava/time/chrono/Chronology;)Ljava/lang/String;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$ChronoPrinterParser$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/Chronology;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$CompositePrinterParser;": {"fields": {"optional:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printerParsers:[Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withOptional(Z)Ljava/time/format/DateTimeFormatterBuilder$CompositePrinterParser;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;": {"fields": {}, "methods": {"format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$DefaultValueParser;": {"fields": {"field:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/temporal/TemporalField;J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$FractionPrinterParser;": {"fields": {"decimalPoint:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/temporal/TemporalField;IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IIZI)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convertFromFraction(Ljava/math/BigDecimal;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "convertToFraction(J)Ljava/math/BigDecimal;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFixedWidth(Ljava/time/format/DateTimeParseContext;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$FractionPrinterParser;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$FractionPrinterParser;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$InstantPrinterParser;": {"fields": {"SECONDS_0000_TO_1970:J": {"value": "0xe79747c00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_PER_10000_YEARS:J": {"value": "0x497968bd80L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fractionalDigits:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$LocalizedOffsetIdPrinterParser;": {"fields": {"style:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/TextStyle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendHMS(Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDigit(Ljava/lang/CharSequence;I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$LocalizedPrinterParser;": {"fields": {"FORMATTER_CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dateStyle:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timeStyle:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/format/FormatStyle;Ljava/time/format/FormatStyle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter(Ljava/util/Locale;Ljava/time/chrono/Chronology;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"fields": {"EXCEED_POINTS:[J": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "field:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxWidth:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minWidth:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signStyle:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subsequentWidth:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetsignStyle(Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;)Ljava/time/format/SignStyle;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IILjava/time/format/SignStyle;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IILjava/time/format/SignStyle;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue(Ljava/time/format/DateTimePrintContext;J)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFixedWidth(Ljava/time/format/DateTimeParseContext;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setValue(Ljava/time/format/DateTimeParseContext;JII)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser;": {"fields": {"INSTANCE_ID_Z:Ljava/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INSTANCE_ID_ZERO:Ljava/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PATTERNS:[Ljava/lang/String;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "noOffsetText:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "style:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPattern(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatZeroPad(ZILjava/lang/StringBuilder;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isColon()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPaddedHour()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseDigits(Ljava/lang/CharSequence;ZI[I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseHour(Ljava/lang/CharSequence;Z[I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseMinute(Ljava/lang/CharSequence;ZZ[I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseOptionalMinuteSecond(Ljava/lang/CharSequence;Z[I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseSecond(Ljava/lang/CharSequence;ZZ[I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseVariableWidthDigits(Ljava/lang/CharSequence;II[I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$PadPrinterParserDecorator;": {"fields": {"padChar:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "padWidth:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printerParser:Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;IC)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI-IA;": {"fields": {}, "methods": {}}, "Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEqual(CC)Z": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prefixOf(Ljava/lang/CharSequence;II)Z": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$LENIENT;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLenientChar(C)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree$CI;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toKey(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$PrefixTree-IA;": {"fields": {}, "methods": {}}, "Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"fields": {"c0:C": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "child:Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/String;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sibling:Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add0(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTree(Ljava/time/format/DateTimeParseContext;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTree(Ljava/util/Set;Ljava/time/format/DateTimeParseContext;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefixLength(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyTree()Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEqual(CC)Z": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match(Ljava/lang/CharSequence;II)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match(Ljava/lang/CharSequence;Ljava/text/ParsePosition;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/String;Ljava/lang/String;Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefixOf(Ljava/lang/CharSequence;II)Z": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toKey(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/time/format/DateTimeParseContext;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$3:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$4:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser;Ljava/time/format/DateTimeParseContext;JII)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser-IA;": {"fields": {}, "methods": {}}, "Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser;": {"fields": {"BASE_DATE:Ljava/time/LocalDate;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseDate:Ljava/time/chrono/ChronoLocalDate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseValue:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IIILjava/time/chrono/ChronoLocalDate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IIILjava/time/chrono/ChronoLocalDate;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/temporal/TemporalField;IIILjava/time/chrono/ChronoLocalDate;ILjava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue(Ljava/time/format/DateTimePrintContext;J)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFixedWidth(Ljava/time/format/DateTimeParseContext;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$setValue$0$java-time-format-DateTimeFormatterBuilder$ReducedPrinterParser(Ljava/time/format/DateTimeParseContext;JIILjava/time/chrono/Chronology;)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setValue(Ljava/time/format/DateTimeParseContext;JII)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$ReducedPrinterParser;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"fields": {"$VALUES:[Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSENSITIVE:Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LENIENT:Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SENSITIVE:Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STRICT:Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/time/format/DateTimeFormatterBuilder$SettingsParser;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser;": {"fields": {"literal:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$TextPrinterParser;": {"fields": {"field:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numberPrinterParser:Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/time/format/DateTimeTextProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "textStyle:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;Ljava/time/format/DateTimeTextProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numberPrinterParser()Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$WeekBasedFieldPrinterParser;": {"fields": {"chr:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(CIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(CIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "printerParser(Ljava/util/Locale;)Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withFixedWidth()Ljava/time/format/DateTimeFormatterBuilder$WeekBasedFieldPrinterParser;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withSubsequentWidth(I)Ljava/time/format/DateTimeFormatterBuilder$WeekBasedFieldPrinterParser;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser;": {"fields": {"cachedPrefixTree:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedPrefixTreeCI:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "description:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "query:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/temporal/TemporalQuery;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseOffsetBased(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;IILjava/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTree(Ljava/time/format/DateTimeParseContext;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/time/format/DateTimeParseContext;Ljava/lang/CharSequence;I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeFormatterBuilder$ZoneTextPrinterParser;": {"fields": {"DST:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FULL_TYPES:[Landroid/icu/text/TimeZoneNames$NameType;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GENERIC:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHORT_TYPES:[Landroid/icu/text/TimeZoneNames$NameType;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STD:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TYPES:[Landroid/icu/text/TimeZoneNames$NameType;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cache:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedTree:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedTreeCI:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isGeneric:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preferredZones:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "textStyle:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/format/TextStyle;Ljava/util/Set;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDisplayName(Ljava/lang/String;ILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/time/format/DateTimePrintContext;Ljava/lang/StringBuilder;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTree(Ljava/time/format/DateTimeParseContext;)Ljava/time/format/DateTimeFormatterBuilder$PrefixTree;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeFormatterBuilder;": {"fields": {"FIELD_MAP:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LENGTH_SORT:Ljava/util/Comparator;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "QUERY_REGION_ONLY:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "active:Ljava/time/format/DateTimeFormatterBuilder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "optional:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "padNextChar:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "padNextWidth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/time/format/DateTimeFormatterBuilder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printerParsers:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueParserIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/time/format/DateTimeFormatterBuilder;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendInternal(Ljava/time/format/DateTimeFormatterBuilder$DateTimePrinterParser;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendValue(Ljava/time/format/DateTimeFormatterBuilder$NumberPrinterParser;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "convertStyle(Ljava/time/format/FormatStyle;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocalizedDateTimePattern(Ljava/time/format/FormatStyle;Ljava/time/format/FormatStyle;Ljava/time/chrono/Chronology;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$static$0(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseField(CILjava/time/temporal/TemporalField;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsePattern(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toFormatter(Ljava/util/Locale;Ljava/time/format/ResolverStyle;Ljava/time/chrono/Chronology;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append(Ljava/time/format/DateTimeFormatter;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendChronologyId()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendChronologyText(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendFraction(Ljava/time/temporal/TemporalField;IIZ)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendGenericZoneText(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendGenericZoneText(Ljava/time/format/TextStyle;Ljava/util/Set;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendInstant()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendInstant(I)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendLiteral(C)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendLiteral(Ljava/lang/String;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendLocalized(Ljava/time/format/FormatStyle;Ljava/time/format/FormatStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendLocalizedOffset(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendOffset(Ljava/lang/String;Ljava/lang/String;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendOffsetId()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendOptional(Ljava/time/format/DateTimeFormatter;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendPattern(Ljava/lang/String;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendText(Ljava/time/temporal/TemporalField;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendText(Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendText(Ljava/time/temporal/TemporalField;Ljava/util/Map;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendValue(Ljava/time/temporal/TemporalField;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendValue(Ljava/time/temporal/TemporalField;I)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendValue(Ljava/time/temporal/TemporalField;IILjava/time/format/SignStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendValueReduced(Ljava/time/temporal/TemporalField;III)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendValueReduced(Ljava/time/temporal/TemporalField;IILjava/time/chrono/ChronoLocalDate;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendZoneId()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendZoneOrOffsetId()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendZoneRegionId()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendZoneText(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendZoneText(Ljava/time/format/TextStyle;Ljava/util/Set;)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "optionalEnd()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "optionalStart()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "padNext(I)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "padNext(IC)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseCaseInsensitive()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseCaseSensitive()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseDefaulting(Ljava/time/temporal/TemporalField;J)Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseLenient()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseStrict()Ljava/time/format/DateTimeFormatterBuilder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFormatter()Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFormatter(Ljava/time/format/ResolverStyle;Ljava/time/chrono/Chronology;)Ljava/time/format/DateTimeFormatter;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toFormatter(Ljava/util/Locale;)Ljava/time/format/DateTimeFormatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeParseContext;": {"fields": {"caseSensitive:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chronoListeners:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsed:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "strict:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/format/DateTimeFormatter;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charEqualsIgnoreCase(CC)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentParsed()Ljava/time/format/Parsed;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addChronoChangedListener(Ljava/util/function/Consumer;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "charEquals(CC)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copy()Ljava/time/format/DateTimeParseContext;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endOptional(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDecimalStyle()Ljava/time/format/DecimalStyle;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEffectiveChronology()Ljava/time/chrono/Chronology;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocale()Ljava/util/Locale;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getParsed(Ljava/time/temporal/TemporalField;)Ljava/lang/Long;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCaseSensitive()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isStrict()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCaseSensitive(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParsed(Ljava/time/ZoneId;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParsed(Ljava/time/chrono/Chronology;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParsedField(Ljava/time/temporal/TemporalField;JII)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParsedLeapSecond()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setStrict(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startOptional()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subSequenceEquals(Ljava/lang/CharSequence;ILjava/lang/CharSequence;II)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toResolved(Ljava/time/format/ResolverStyle;Ljava/util/Set;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnresolved()Ljava/time/format/Parsed;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeParseException;": {"fields": {"serialVersionUID:J": {"value": "0x3bbd215ce3915525L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "errorIndex:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsedString:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/CharSequence;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/CharSequence;ILjava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParsedString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimePrintContext$1;": {"fields": {"val$effectiveChrono:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$effectiveDate:Ljava/time/chrono/ChronoLocalDate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$effectiveZone:Ljava/time/ZoneId;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$temporal:Ljava/time/temporal/TemporalAccessor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/chrono/ChronoLocalDate;Ljava/time/temporal/TemporalAccessor;Ljava/time/chrono/Chronology;Ljava/time/ZoneId;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimePrintContext;": {"fields": {"formatter:Ljava/time/format/DateTimeFormatter;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "optional:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "temporal:Ljava/time/temporal/TemporalAccessor;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/time/temporal/TemporalAccessor;Ljava/time/format/DateTimeFormatter;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjust(Ljava/time/temporal/TemporalAccessor;Ljava/time/format/DateTimeFormatter;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endOptional()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDecimalStyle()Ljava/time/format/DecimalStyle;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocale()Ljava/util/Locale;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTemporal()Ljava/time/temporal/TemporalAccessor;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue(Ljava/time/temporal/TemporalField;)Ljava/lang/Long;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startOptional()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DateTimeTextProvider$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeTextProvider$2;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeTextProvider;": {"fields": {"CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COMPARATOR:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INSTANCE:Ljava/time/format/DateTimeTextProvider;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetCOMPARATOR()Ljava/util/Comparator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smcreateEntry(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createEntry(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createStore(Ljava/time/temporal/TemporalField;Ljava/util/Locale;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extractQuarters([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findStore(Ljava/time/temporal/TemporalField;Ljava/util/Locale;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance()Ljava/time/format/DateTimeTextProvider;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toWeekDay(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getText(Ljava/time/chrono/Chronology;Ljava/time/temporal/TemporalField;JLjava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getText(Ljava/time/temporal/TemporalField;JLjava/time/format/TextStyle;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTextIterator(Ljava/time/chrono/Chronology;Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTextIterator(Ljava/time/temporal/TemporalField;Ljava/time/format/TextStyle;Ljava/util/Locale;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/DateTimeTextProvider$LocaleStore;": {"fields": {"parsable:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueTextMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getText(JLjava/time/format/TextStyle;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTextIterator(Ljava/time/format/TextStyle;)Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/FormatStyle;": {"fields": {"$VALUES:[Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FULL:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONG:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MEDIUM:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT:Ljava/time/format/FormatStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/format/FormatStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/format/FormatStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/DecimalStyle;": {"fields": {"CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STANDARD:Ljava/time/format/DecimalStyle;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decimalSeparator:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "negativeSign:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "positiveSign:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroDigit:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(CCCC)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(Ljava/util/Locale;)Ljava/time/format/DecimalStyle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/util/Locale;)Ljava/time/format/DecimalStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofDefaultLocale()Ljava/time/format/DecimalStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "convertNumberToI18N(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "convertToDigit(C)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDecimalSeparator()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNegativeSign()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPositiveSign()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZeroDigit()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withDecimalSeparator(C)Ljava/time/format/DecimalStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withNegativeSign(C)Ljava/time/format/DecimalStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withPositiveSign(C)Ljava/time/format/DecimalStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withZeroDigit(C)Ljava/time/format/DecimalStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/Parsed;": {"fields": {"chrono:Ljava/time/chrono/Chronology;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "date:Ljava/time/chrono/ChronoLocalDate;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "excessDays:Ljava/time/Period;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fieldValues:Ljava/util/Map;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leapSecond:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolverStyle:Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "time:Ljava/time/LocalTime;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zone:Ljava/time/ZoneId;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crossCheck()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crossCheck(Ljava/time/temporal/TemporalAccessor;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveDateFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveFractional()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveInstant()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveInstantFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveInstantFields0(Ljava/time/ZoneId;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolvePeriod()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveTime(JJJJ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveTimeFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveTimeLenient()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateCheckConflict(Ljava/time/LocalTime;Ljava/time/Period;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateCheckConflict(Ljava/time/chrono/ChronoLocalDate;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateCheckConflict(Ljava/time/temporal/TemporalField;Ljava/time/temporal/TemporalField;Ljava/lang/Long;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copy()Ljava/time/format/Parsed;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/time/format/ResolverStyle;Ljava/util/Set;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/ResolverStyle;": {"fields": {"$VALUES:[Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LENIENT:Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SMART:Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRICT:Ljava/time/format/ResolverStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/format/ResolverStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/format/ResolverStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/format/SignStyle;": {"fields": {"$VALUES:[Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALWAYS:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXCEEDS_PAD:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEVER:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NORMAL:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOT_NEGATIVE:Ljava/time/format/SignStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/format/SignStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/format/SignStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(ZZZ)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/TextStyle;": {"fields": {"$VALUES:[Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FULL:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FULL_STANDALONE:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NARROW:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NARROW_STANDALONE:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT_STANDALONE:Ljava/time/format/TextStyle;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "calendarStyle:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zoneNameStyleIndex:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;III)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/format/TextStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/format/TextStyle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asNormal()Ljava/time/format/TextStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asStandalone()Ljava/time/format/TextStyle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isStandalone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCalendarStyle()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zoneNameStyleIndex()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/format/ZoneName;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSystemCanonicalID(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toZid(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toZid(Ljava/lang/String;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/temporal/ChronoField$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoField:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/temporal/ChronoField;": {"fields": {"$VALUES:[Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALIGNED_DAY_OF_WEEK_IN_MONTH:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALIGNED_DAY_OF_WEEK_IN_YEAR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALIGNED_WEEK_OF_MONTH:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ALIGNED_WEEK_OF_YEAR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AMPM_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CLOCK_HOUR_OF_AMPM:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CLOCK_HOUR_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_MONTH:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_YEAR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EPOCH_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERA:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_AMPM:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSTANT_SECONDS:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MICRO_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MICRO_OF_SECOND:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLI_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLI_OF_SECOND:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE_OF_HOUR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTH_OF_YEAR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NANO_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NANO_OF_SECOND:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OFFSET_SECONDS:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROLEPTIC_MONTH:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND_OF_DAY:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND_OF_MINUTE:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEAR:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEAR_OF_ERA:Ljava/time/temporal/ChronoField;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "baseUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "displayNameKey:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/ValueRange;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/ValueRange;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIcuFieldNumber(Ljava/time/temporal/ChronoField;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/temporal/ChronoField;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/temporal/ChronoField;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidIntValue(J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidValue(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/ChronoUnit;": {"fields": {"$VALUES:[Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CENTURIES:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAYS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DECADES:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERAS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FOREVER:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HALF_DAYS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOURS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MICROS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLENNIA:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLIS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTES:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTHS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NANOS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECONDS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEKS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEARS:Ljava/time/temporal/ChronoUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duration:Ljava/time/Duration;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/time/Duration;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/temporal/ChronoUnit;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/temporal/ChronoUnit;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addTo(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "between(Ljava/time/temporal/Temporal;Ljava/time/temporal/Temporal;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDuration()Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDurationEstimated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/Temporal;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$1;": {"fields": {"$SwitchMap$java$time$temporal$IsoFields$Unit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/temporal/IsoFields$Field$1-IA;": {"fields": {}, "methods": {}}, "Ljava/time/temporal/IsoFields$Field$1;": {"fields": {}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/time/temporal/IsoFields$Field$1-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$Field$2-IA;": {"fields": {}, "methods": {}}, "Ljava/time/temporal/IsoFields$Field$2;": {"fields": {}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/time/temporal/IsoFields$Field$2-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$Field$3-IA;": {"fields": {}, "methods": {}}, "Ljava/time/temporal/IsoFields$Field$3;": {"fields": {}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/time/temporal/IsoFields$Field$3-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$Field$4-IA;": {"fields": {}, "methods": {}}, "Ljava/time/temporal/IsoFields$Field$4;": {"fields": {}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/time/temporal/IsoFields$Field$4-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$Field-IA;": {"fields": {}, "methods": {}}, "Ljava/time/temporal/IsoFields$Field;": {"fields": {"$VALUES:[Ljava/time/temporal/IsoFields$Field;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DAY_OF_QUARTER:Ljava/time/temporal/IsoFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "QUARTER_DAYS:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "QUARTER_OF_YEAR:Ljava/time/temporal/IsoFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_BASED_YEAR:Ljava/time/temporal/IsoFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_OF_WEEK_BASED_YEAR:Ljava/time/temporal/IsoFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetQUARTER_DAYS()[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smensureIso(Ljava/time/temporal/TemporalAccessor;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetWeek(Ljava/time/LocalDate;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetWeekBasedYear(Ljava/time/LocalDate;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetWeekRange(I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetWeekRange(Ljava/time/LocalDate;)Ljava/time/temporal/ValueRange;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/time/temporal/IsoFields$Field-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureIso(Ljava/time/temporal/TemporalAccessor;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeek(Ljava/time/LocalDate;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeekBasedYear(Ljava/time/LocalDate;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeekRange(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeekRange(Ljava/time/LocalDate;)Ljava/time/temporal/ValueRange;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/temporal/IsoFields$Field;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/time/temporal/IsoFields$Field;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields$Unit;": {"fields": {"$VALUES:[Ljava/time/temporal/IsoFields$Unit;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QUARTER_YEARS:Ljava/time/temporal/IsoFields$Unit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_BASED_YEARS:Ljava/time/temporal/IsoFields$Unit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "duration:Ljava/time/Duration;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/time/Duration;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/temporal/IsoFields$Unit;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/time/temporal/IsoFields$Unit;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addTo(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "between(Ljava/time/temporal/Temporal;Ljava/time/temporal/Temporal;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDuration()Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDurationEstimated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/Temporal;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/IsoFields;": {"fields": {"DAY_OF_QUARTER:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "QUARTER_OF_YEAR:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "QUARTER_YEARS:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_BASED_YEAR:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_BASED_YEARS:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_WEEK_BASED_YEAR:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isIso(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/temporal/JulianFields$Field;": {"fields": {"$VALUES:[Ljava/time/temporal/JulianFields$Field;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JULIAN_DAY:Ljava/time/temporal/JulianFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIED_JULIAN_DAY:Ljava/time/temporal/JulianFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RATA_DIE:Ljava/time/temporal/JulianFields$Field;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x681b1f35efa83fd4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/TemporalUnit;J)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/temporal/JulianFields$Field;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/time/temporal/JulianFields$Field;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/JulianFields;": {"fields": {"JULIAN_DAY:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JULIAN_DAY_OFFSET:J": {"value": "0x253d8cL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFIED_JULIAN_DAY:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RATA_DIE:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/temporal/Temporal;": {"fields": {}, "methods": {"isSupported(Ljava/time/temporal/TemporalUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(JLjava/time/temporal/TemporalUnit;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "plus(Ljava/time/temporal/TemporalAmount;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "until(Ljava/time/temporal/Temporal;Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalAdjuster;)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "with(Ljava/time/temporal/TemporalField;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAccessor;": {"fields": {}, "methods": {"get(Ljava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/time/temporal/TemporalField;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupported(Ljava/time/temporal/TemporalField;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "query(Ljava/time/temporal/TemporalQuery;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjuster;": {"fields": {}, "methods": {"adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda10;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(II)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda11;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda1;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda3;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda5;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda7;": {"fields": {"f$0:Ljava/util/function/UnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda8;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters$$ExternalSyntheticLambda9;": {"fields": {"f$0:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(II)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAdjusters;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dayOfWeekInMonth(ILjava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfMonth()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfNextMonth()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfNextYear()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfYear()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstInMonth(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$dayOfWeekInMonth$7(IILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$dayOfWeekInMonth$8(IILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$firstDayOfMonth$1(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$firstDayOfNextMonth$3(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$firstDayOfNextYear$6(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$firstDayOfYear$4(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$lastDayOfMonth$2(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$lastDayOfYear$5(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$next$9(ILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$nextOrSame$10(ILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$ofDateAdjuster$0(Ljava/util/function/UnaryOperator;Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$previous$11(ILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$previousOrSame$12(ILjava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastDayOfMonth()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastDayOfYear()Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastInMonth(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextOrSame(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofDateAdjuster(Ljava/util/function/UnaryOperator;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousOrSame(Ljava/time/DayOfWeek;)Ljava/time/temporal/TemporalAdjuster;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalAmount;": {"fields": {}, "methods": {"addTo(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/time/temporal/TemporalUnit;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnits()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtractFrom(Ljava/time/temporal/Temporal;)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalField;": {"fields": {}, "methods": {"adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/chrono/Chronology;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$4;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$6;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$5;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries$7;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQueries;": {"fields": {"CHRONO:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOCAL_DATE:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOCAL_TIME:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OFFSET:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRECISION:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZONE:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZONE_ID:Ljava/time/temporal/TemporalQuery;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chronology()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localDate()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "localTime()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offset()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "precision()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zone()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zoneId()Ljava/time/temporal/TemporalQuery;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalQuery;": {"fields": {}, "methods": {"queryFrom(Ljava/time/temporal/TemporalAccessor;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/TemporalUnit;": {"fields": {}, "methods": {"addTo(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "between(Ljava/time/temporal/Temporal;Ljava/time/temporal/Temporal;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDuration()Ljava/time/Duration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDurationEstimated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/Temporal;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/ValueRange;": {"fields": {"serialVersionUID:J": {"value": "-0x658e56a90d32a548L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "maxLargest:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxSmallest:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minLargest:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minSmallest:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JJJJ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "genInvalidFieldMessage(Ljava/time/temporal/TemporalField;J)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(JJ)Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(JJJ)Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(JJJJ)Ljava/time/temporal/ValueRange;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "checkValidIntValue(JLjava/time/temporal/TemporalField;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidValue(JLjava/time/temporal/TemporalField;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLargestMinimum()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximum()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimum()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSmallestMaximum()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFixed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isIntValue()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidIntValue(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidValue(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/UnsupportedTemporalTypeException;": {"fields": {"serialVersionUID:J": {"value": "-0x5578cd7fadb7ecb6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"fields": {"DAY_OF_WEEK_RANGE:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_OF_MONTH_RANGE:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_OF_WEEK_BASED_YEAR_RANGE:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_OF_YEAR_RANGE:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range:Ljava/time/temporal/ValueRange;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeUnit:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekDef:Ljava/time/temporal/WeekFields;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/time/temporal/WeekFields;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/TemporalUnit;Ljava/time/temporal/ValueRange;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "computeWeek(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedDayOfWeek(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedDayOfWeek(Ljava/time/temporal/TemporalAccessor;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedWeekBasedYear(Ljava/time/temporal/TemporalAccessor;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedWeekOfMonth(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedWeekOfWeekBasedYear(Ljava/time/temporal/TemporalAccessor;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedWeekOfYear(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofDayOfWeekField(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofWeekBasedYear(Ljava/time/chrono/Chronology;III)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofWeekBasedYearField(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofWeekOfMonthField(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofWeekOfWeekBasedYearField(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofWeekOfYearField(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/WeekFields$ComputedDayOfField;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeByWeek(Ljava/time/temporal/TemporalAccessor;Ljava/time/temporal/TemporalField;)Ljava/time/temporal/ValueRange;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeWeekOfWeekBasedYear(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveWBY(Ljava/util/Map;Ljava/time/chrono/Chronology;ILjava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveWoM(Ljava/util/Map;Ljava/time/chrono/Chronology;IJJILjava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resolveWoY(Ljava/util/Map;Ljava/time/chrono/Chronology;IJILjava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startOfWeekOffset(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjustInto(Ljava/time/temporal/Temporal;J)Ljava/time/temporal/Temporal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFrom(Ljava/time/temporal/TemporalAccessor;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRangeUnit()Ljava/time/temporal/TemporalUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDateBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSupportedBy(Ljava/time/temporal/TemporalAccessor;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeBased()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range()Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeRefinedBy(Ljava/time/temporal/TemporalAccessor;)Ljava/time/temporal/ValueRange;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/chrono/ChronoLocalDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/util/Map;Ljava/time/temporal/TemporalAccessor;Ljava/time/format/ResolverStyle;)Ljava/time/temporal/TemporalAccessor;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/temporal/WeekFields;": {"fields": {"CACHE:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ISO:Ljava/time/temporal/WeekFields;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUNDAY_START:Ljava/time/temporal/WeekFields;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_BASED_YEARS:Ljava/time/temporal/TemporalUnit;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x1056d36d74f0f639L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dayOfWeek:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstDayOfWeek:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimalDays:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekBasedYear:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekOfMonth:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekOfWeekBasedYear:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weekOfYear:Ljava/time/temporal/TemporalField;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdayOfWeek(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/TemporalField;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetweekBasedYear(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/TemporalField;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetweekOfWeekBasedYear(Ljava/time/temporal/WeekFields;)Ljava/time/temporal/TemporalField;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/DayOfWeek;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/time/DayOfWeek;I)Ljava/time/temporal/WeekFields;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/util/Locale;)Ljava/time/temporal/WeekFields;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "retrieveFirstDayOfWeek(Ljava/util/Locale;Landroid/icu/util/Calendar$WeekData;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dayOfWeek()Ljava/time/temporal/TemporalField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirstDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimalDaysInFirstWeek()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weekBasedYear()Ljava/time/temporal/TemporalField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weekOfMonth()Ljava/time/temporal/TemporalField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weekOfWeekBasedYear()Ljava/time/temporal/TemporalField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weekOfYear()Ljava/time/temporal/TemporalField;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/zone/IcuZoneRulesProvider$ZoneRulesCache;": {"fields": {}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/String;)Ljava/time/zone/ZoneRules;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/zone/IcuZoneRulesProvider;": {"fields": {"cache:Llibcore/util/BasicLruCache;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "generateZoneRules(Ljava/lang/String;)Ljava/time/zone/ZoneRules;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideRules(Ljava/lang/String;Z)Ljava/time/zone/ZoneRules;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideVersions(Ljava/lang/String;)Ljava/util/NavigableMap;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideZoneIds()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/zone/Ser;": {"fields": {"ZOT:B": {"value": "0x2t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZOTRULE:B": {"value": "0x3t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZRULES:B": {"value": "0x1t", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x7b4f011483e5ac42L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "object:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(BLjava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/DataInput;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readEpochSec(Ljava/io/DataInput;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readInternal(BLjava/io/DataInput;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readOffset(Ljava/io/DataInput;)Ljava/time/ZoneOffset;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "write(Ljava/lang/Object;Ljava/io/DataOutput;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeEpochSec(JLjava/io/DataOutput;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeInternal(BLjava/lang/Object;Ljava/io/DataOutput;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeOffset(Ljava/time/ZoneOffset;Ljava/io/DataOutput;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readExternal(Ljava/io/ObjectInput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/ObjectOutput;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/zone/ZoneOffsetTransition;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x60654e82b3c68362L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "epochSecond:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offsetAfter:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsetBefore:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transition:Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JLjava/time/ZoneOffset;Ljava/time/ZoneOffset;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDurationSeconds()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/time/zone/ZoneOffsetTransition;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateTimeAfter()Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDateTimeBefore()Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDuration()Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsetAfter()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsetBefore()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValidOffsets()Ljava/util/List;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isGap()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOverlap()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidOffset(Ljava/time/ZoneOffset;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toEpochSecond()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/zone/ZoneOffsetTransitionRule$1;": {"fields": {"$SwitchMap$java$time$zone$ZoneOffsetTransitionRule$TimeDefinition:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"fields": {"$VALUES:[Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STANDARD:Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTC:Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WALL:Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createDateTime(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;)Ljava/time/LocalDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/zone/ZoneOffsetTransitionRule;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x5f9acf201199524bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "dom:B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dow:Ljava/time/DayOfWeek;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "month:Ljava/time/Month;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsetAfter:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsetBefore:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "standardOffset:Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "time:Ljava/time/LocalTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timeDefinition:Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timeEndOfDay:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/Month;ILjava/time/DayOfWeek;Ljava/time/LocalTime;ZLjava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/time/Month;ILjava/time/DayOfWeek;Ljava/time/LocalTime;ZLjava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;)Ljava/time/zone/ZoneOffsetTransitionRule;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/zone/ZoneOffsetTransitionRule;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "createTransition(I)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonthIndicator()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfWeek()Ljava/time/DayOfWeek;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalTime()Ljava/time/LocalTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()Ljava/time/Month;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsetAfter()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsetBefore()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStandardOffset()Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeDefinition()Ljava/time/zone/ZoneOffsetTransitionRule$TimeDefinition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMidnightEndOfDay()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/zone/ZoneRules;": {"fields": {"EMPTY_LASTRULES:[Ljava/time/zone/ZoneOffsetTransitionRule;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_LDT_ARRAY:[Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_LONG_ARRAY:[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LAST_CACHED_YEAR:I": {"value": "0x834", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2a3f985312278703L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "lastRules:[Ljava/time/zone/ZoneOffsetTransitionRule;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRulesCache:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "savingsInstantTransitions:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "savingsLocalTransitions:[Ljava/time/LocalDateTime;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "standardOffsets:[Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "standardTransitions:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wallOffsets:[Ljava/time/ZoneOffset;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/time/ZoneOffset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([J[Ljava/time/ZoneOffset;[J[Ljava/time/ZoneOffset;[Ljava/time/zone/ZoneOffsetTransitionRule;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findOffsetInfo(Ljava/time/LocalDateTime;Ljava/time/zone/ZoneOffsetTransition;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findTransitionArray(I)[Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findYear(JLjava/time/ZoneOffset;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOffsetInfo(Ljava/time/LocalDateTime;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/time/ZoneOffset;)Ljava/time/zone/ZoneRules;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/time/ZoneOffset;Ljava/time/ZoneOffset;Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/time/zone/ZoneRules;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readExternal(Ljava/io/DataInput;)Ljava/time/zone/ZoneRules;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDaylightSavings(Ljava/time/Instant;)Ljava/time/Duration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(Ljava/time/Instant;)Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(Ljava/time/LocalDateTime;)Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStandardOffset(Ljava/time/Instant;)Ljava/time/ZoneOffset;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransition(Ljava/time/LocalDateTime;)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransitionRules()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransitions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValidOffsets(Ljava/time/LocalDateTime;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDaylightSavings(Ljava/time/Instant;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFixedOffset()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValidOffset(Ljava/time/LocalDateTime;Ljava/time/ZoneOffset;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextTransition(Ljava/time/Instant;)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousTransition(Ljava/time/Instant;)Ljava/time/zone/ZoneOffsetTransition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeExternal(Ljava/io/DataOutput;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/time/zone/ZoneRulesException;": {"fields": {"serialVersionUID:J": {"value": "-0x16a7842e31574fcfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/time/zone/ZoneRulesProvider;": {"fields": {"PROVIDERS:Ljava/util/concurrent/CopyOnWriteArrayList;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZONES:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZONE_IDS:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAvailableZoneIds()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProvider(Ljava/lang/String;)Ljava/time/zone/ZoneRulesProvider;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRules(Ljava/lang/String;Z)Ljava/time/zone/ZoneRules;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVersions(Ljava/lang/String;)Ljava/util/NavigableMap;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "refresh()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "registerProvider(Ljava/time/zone/ZoneRulesProvider;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "registerProvider0(Ljava/time/zone/ZoneRulesProvider;)V": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideRefresh()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideRules(Ljava/lang/String;Z)Ljava/time/zone/ZoneRules;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideVersions(Ljava/lang/String;)Ljava/util/NavigableMap;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provideZoneIds()Ljava/util/Set;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/AbstractCollection;": {"fields": {"MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finishToArray([Ljava/lang/Object;Ljava/util/Iterator;)[Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$Itr-IA;": {"fields": {}, "methods": {}}, "Ljava/util/AbstractList$Itr;": {"fields": {"cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/AbstractList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractList;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/AbstractList;Ljava/util/AbstractList$Itr-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkForComodification()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$RandomAccessSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "alist:Ljava/util/AbstractList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/AbstractList$RandomAccessSpliterator;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAbstractListModCount(Ljava/util/AbstractList;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/util/List;I)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$ListItr;": {"fields": {"this$0:Ljava/util/AbstractList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractList;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$RandomAccessSubList;": {"fields": {}, "methods": {"(Ljava/util/AbstractList$RandomAccessSubList;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/AbstractList;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$SubList$1;": {"fields": {"i:Ljava/util/ListIterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/AbstractList$SubList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$index:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractList$SubList;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList$SubList;": {"fields": {"offset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parent:Ljava/util/AbstractList$SubList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "root:Ljava/util/AbstractList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetoffset(Ljava/util/AbstractList$SubList;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetroot(Ljava/util/AbstractList$SubList;)Ljava/util/AbstractList;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mupdateSizeAndModCount(Ljava/util/AbstractList$SubList;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/AbstractList$SubList;II)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/AbstractList;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkForComodification()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsMsg(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rangeCheckForAdd(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateSizeAndModCount(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractList;": {"fields": {"modCount:I": {"value": null, "other": [".field", "protected", "transient"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "outOfBoundsMsg(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeCheckForAdd(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subListRangeCheck(III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$1$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/AbstractMap$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractMap$1;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$1;": {"fields": {"this$0:Ljava/util/AbstractMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$2$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/AbstractMap$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractMap$2;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$2;": {"fields": {"this$0:Ljava/util/AbstractMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/AbstractMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$SimpleEntry;": {"fields": {"serialVersionUID:J": {"value": "-0x75f5135a03a97fe1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map$Entry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap$SimpleImmutableEntry;": {"fields": {"serialVersionUID:J": {"value": "0x6310708932e65f81L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map$Entry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractMap;": {"fields": {"keySet:Ljava/util/Set;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/Collection;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smeq(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eq(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractQueue;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractSequentialList;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/AbstractSet;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayDeque$DeqIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ArrayDeque$DeqIterator;": {"fields": {"cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/ArrayDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayDeque;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayDeque;Ljava/util/ArrayDeque$DeqIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayDeque$DeqSpliterator;": {"fields": {"deq:Ljava/util/ArrayDeque;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayDeque;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/ArrayDeque$DeqSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayDeque$DescendingIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ArrayDeque$DescendingIterator;": {"fields": {"cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/ArrayDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayDeque;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayDeque;Ljava/util/ArrayDeque$DescendingIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayDeque;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_INITIAL_CAPACITY:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x207cda2e240da08bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elements:[Ljava/lang/Object;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "head:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "tail:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allocateElements(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInvariants()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubleCapacity()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/ArrayDeque;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(I)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList$ArrayListSpliterator;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "list:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayList;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/ArrayList$ArrayListSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList$Itr-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ArrayList$Itr;": {"fields": {"cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "limit:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/ArrayList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayList;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayList;Ljava/util/ArrayList$Itr-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList$ListItr;": {"fields": {"this$0:Ljava/util/ArrayList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayList;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList$SubList$1;": {"fields": {"cursor:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/ArrayList$SubList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$index:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$offset:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayList$SubList;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList$SubList;": {"fields": {"offset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "parent:Ljava/util/AbstractList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parentOffset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "this$0:Ljava/util/ArrayList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayList;Ljava/util/AbstractList;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsMsg(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayList;": {"fields": {"DEFAULTCAPACITY_EMPTY_ELEMENTDATA:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_CAPACITY:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_ELEMENTDATA:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x7881d21d99c7619dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elementData:[Ljava/lang/Object;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetsize(Ljava/util/ArrayList;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "batchRemove(Ljava/util/Collection;Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureCapacityInternal(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureExplicitCapacity(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fastRemove(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "outOfBoundsMsg(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "subListRangeCheck(III)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacity(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trimToSize()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayPrefixHelpers$CumulateTask;": {"fields": {"serialVersionUID:J": {"value": "0x49767bc622e29967L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "function:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hi:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "left:Ljava/util/ArrayPrefixHelpers$CumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lo:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "right:Ljava/util/ArrayPrefixHelpers$CumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayPrefixHelpers$CumulateTask;Ljava/util/function/BinaryOperator;[Ljava/lang/Object;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayPrefixHelpers$CumulateTask;Ljava/util/function/BinaryOperator;[Ljava/lang/Object;IIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayPrefixHelpers$DoubleCumulateTask;": {"fields": {"serialVersionUID:J": {"value": "-0x82541ef9af19ae1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "function:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hi:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "left:Ljava/util/ArrayPrefixHelpers$DoubleCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lo:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "right:Ljava/util/ArrayPrefixHelpers$DoubleCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayPrefixHelpers$DoubleCumulateTask;Ljava/util/function/DoubleBinaryOperator;[DII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayPrefixHelpers$DoubleCumulateTask;Ljava/util/function/DoubleBinaryOperator;[DIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayPrefixHelpers$IntCumulateTask;": {"fields": {"serialVersionUID:J": {"value": "0x33c9dbf10c857601L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "function:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hi:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "left:Ljava/util/ArrayPrefixHelpers$IntCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lo:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "right:Ljava/util/ArrayPrefixHelpers$IntCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayPrefixHelpers$IntCumulateTask;Ljava/util/function/IntBinaryOperator;[III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayPrefixHelpers$IntCumulateTask;Ljava/util/function/IntBinaryOperator;[IIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayPrefixHelpers$LongCumulateTask;": {"fields": {"serialVersionUID:J": {"value": "-0x466ad3045ec06db1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "function:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hi:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "left:Ljava/util/ArrayPrefixHelpers$LongCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lo:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "right:Ljava/util/ArrayPrefixHelpers$LongCumulateTask;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ArrayPrefixHelpers$LongCumulateTask;Ljava/util/function/LongBinaryOperator;[JII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayPrefixHelpers$LongCumulateTask;Ljava/util/function/LongBinaryOperator;[JIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArrayPrefixHelpers;": {"fields": {"CUMULATE:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINISHED:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_PARTITION:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUMMED:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Arrays$$ExternalSyntheticLambda0;": {"fields": {"f$0:[J": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntToLongFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([JLjava/util/function/IntToLongFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$$ExternalSyntheticLambda1;": {"fields": {"f$0:[D": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntToDoubleFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([DLjava/util/function/IntToDoubleFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$$ExternalSyntheticLambda2;": {"fields": {"f$0:[I": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([ILjava/util/function/IntUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$$ExternalSyntheticLambda3;": {"fields": {"f$0:[Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Object;Ljava/util/function/IntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$ArrayItr;": {"fields": {"a:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$ArrayList;": {"fields": {"serialVersionUID:J": {"value": "-0x265bc3413277f92eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays$NaturalOrder;": {"fields": {"INSTANCE:Ljava/util/Arrays$NaturalOrder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Arrays;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSERTIONSORT_THRESHOLD:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_ARRAY_SORT_GRAN:I": {"value": "0x2000", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asList([Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([BB)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([BIIB)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([CC)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([CIIC)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([DD)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([DIID)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([FF)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([FIIF)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([IIII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([JIIJ)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([JJ)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([Ljava/lang/Object;IILjava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([Ljava/lang/Object;IILjava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([SIIS)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch([SS)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch0([BIIB)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([CIIC)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([DIID)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([FIIF)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([IIII)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([JIIJ)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([Ljava/lang/Object;IILjava/lang/Object;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([Ljava/lang/Object;IILjava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "binarySearch0([SIIS)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare([BII[BII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([B[B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([CII[CII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([C[C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([DII[DII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([D[D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([FII[FII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([F[F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([III[III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([I[I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([JII[JII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([J[J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([Ljava/lang/Comparable;II[Ljava/lang/Comparable;II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([Ljava/lang/Comparable;[Ljava/lang/Comparable;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([Ljava/lang/Object;II[Ljava/lang/Object;IILjava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([Ljava/lang/Object;[Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([SII[SII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([S[S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([ZII[ZII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([Z[Z)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([BII[BII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([B[B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([III[III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([I[I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([JII[JII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([J[J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([SII[SII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareUnsigned([S[S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([BI)[B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([CI)[C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([DI)[D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([FI)[F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([II)[I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([JI)[J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([Ljava/lang/Object;I)[Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([SI)[S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf([ZI)[Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([BII)[B": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([CII)[C": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([DII)[D": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([FII)[F": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([III)[I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([JII)[J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([Ljava/lang/Object;II)[Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([SII)[S": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOfRange([ZII)[Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deepEquals([Ljava/lang/Object;[Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deepEquals0(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deepHashCode([Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deepToString([Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deepToString([Ljava/lang/Object;Ljava/lang/StringBuilder;Ljava/util/Set;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals([BII[BII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([B[B)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([CII[CII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([C[C)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([DII[DII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([D[D)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([FII[FII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([F[F)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([III[III)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([I[I)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([JII[JII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([J[J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([Ljava/lang/Object;II[Ljava/lang/Object;II)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([Ljava/lang/Object;II[Ljava/lang/Object;IILjava/util/Comparator;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([Ljava/lang/Object;[Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([Ljava/lang/Object;[Ljava/lang/Object;Ljava/util/Comparator;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([SII[SII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([S[S)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([ZII[ZII)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals([Z[Z)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([BB)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([BIIB)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([CC)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([CIIC)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([DD)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([DIID)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([FF)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([FIIF)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([IIII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([JIIJ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([JJ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([Ljava/lang/Object;IILjava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([SIIS)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([SS)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([ZIIZ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill([ZZ)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode([Z)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$parallelSetAll$0([Ljava/lang/Object;Ljava/util/function/IntFunction;I)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$parallelSetAll$1([ILjava/util/function/IntUnaryOperator;I)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$parallelSetAll$2([JLjava/util/function/IntToLongFunction;I)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$parallelSetAll$3([DLjava/util/function/IntToDoubleFunction;I)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeSort([Ljava/lang/Object;[Ljava/lang/Object;III)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mismatch([BII[BII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([B[B)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([CII[CII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([C[C)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([DII[DII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([D[D)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([FII[FII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([F[F)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([III[III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([I[I)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([JII[JII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([J[J)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([Ljava/lang/Object;II[Ljava/lang/Object;II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([Ljava/lang/Object;II[Ljava/lang/Object;IILjava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([Ljava/lang/Object;[Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([Ljava/lang/Object;[Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([SII[SII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([S[S)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([ZII[ZII)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mismatch([Z[Z)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([DIILjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([IIILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([JIILjava/util/function/LongBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([Ljava/lang/Object;IILjava/util/function/BinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelPrefix([Ljava/lang/Object;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSetAll([DLjava/util/function/IntToDoubleFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSetAll([ILjava/util/function/IntUnaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSetAll([JLjava/util/function/IntToLongFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSetAll([Ljava/lang/Object;Ljava/util/function/IntFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([B)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([BII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([C)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([CII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([D)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([DII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([F)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([FII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([I)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([III)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([JII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([Ljava/lang/Comparable;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([Ljava/lang/Comparable;II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([Ljava/lang/Object;IILjava/util/Comparator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([Ljava/lang/Object;Ljava/util/Comparator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([S)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelSort([SII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "primitiveArrayHashCode(Ljava/lang/Object;Ljava/lang/Class;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rangeCheck(III)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setAll([DLjava/util/function/IntToDoubleFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAll([ILjava/util/function/IntUnaryOperator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAll([JLjava/util/function/IntToLongFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAll([Ljava/lang/Object;Ljava/util/function/IntFunction;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([B)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([BII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([C)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([CII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([D)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([DII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([F)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([FII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([I)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([III)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([JII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([Ljava/lang/Object;II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([Ljava/lang/Object;IILjava/util/Comparator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([Ljava/lang/Object;Ljava/util/Comparator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([S)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort([SII)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([D)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([DII)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([I)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([III)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([J)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([JII)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([Ljava/lang/Object;)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([Ljava/lang/Object;II)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([D)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([DII)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([I)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([III)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([JII)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([Ljava/lang/Object;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream([Ljava/lang/Object;II)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "swap([Ljava/lang/Object;II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString([B)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([C)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([D)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([F)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([I)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([J)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([S)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString([Z)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$EmptyCompleter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJByte$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[B": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[B": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[B[BIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJByte$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[B": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[B": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[B[BIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJByte;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJChar$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[C[CIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJChar$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[C": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[C[CIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJChar;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJDouble$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[D[DIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJDouble$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[D[DIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJDouble;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJFloat$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[F": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[F": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[F[FIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJFloat$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[F": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[F": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[F[FIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJFloat;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJInt$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[I[IIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJInt$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[I[IIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJInt;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJLong$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[J[JIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJLong$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[J[JIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJLong;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJObject$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[Ljava/lang/Object;[Ljava/lang/Object;IIIIIILjava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJObject$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[Ljava/lang/Object;[Ljava/lang/Object;IIIILjava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJObject;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$FJShort$Merger;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[S": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[S": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[S[SIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJShort$Sorter;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "a:[S": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gran:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "w:[S": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wbase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;[S[SIIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers$FJShort;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ArraysParallelSortHelpers$Relay;": {"fields": {"serialVersionUID:J": {"value": "0x21f3ddce4497ab4cL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "task:Ljava/util/concurrent/CountedCompleter;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ArraysParallelSortHelpers;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Base64$DecInputStream;": {"fields": {"base64:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eof:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "is:Ljava/io/InputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMIME:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextin:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sbBuf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;[IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Base64$EncOutputStream;": {"fields": {"b0:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "b1:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "b2:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "base64:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doPadding:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leftover:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linemax:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linepos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newline:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;[C[BIZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkNewline()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Base64$Decoder;": {"fields": {"RFC2045:Ljava/util/Base64$Decoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC4648:Ljava/util/Base64$Decoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC4648_URLSAFE:Ljava/util/Base64$Decoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromBase64:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromBase64URL:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMIME:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isURL:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetfromBase64()[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decode0([BII[B)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "outLength([BII)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decode([B[B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decode([B)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/io/InputStream;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Base64$Encoder-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Base64$Encoder;": {"fields": {"CRLF:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIMELINEMAX:I": {"value": "0x4c", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC2045:Ljava/util/Base64$Encoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC4648:Ljava/util/Base64$Encoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC4648_URLSAFE:Ljava/util/Base64$Encoder;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toBase64:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toBase64URL:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doPadding:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isURL:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linemax:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newline:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgettoBase64()[C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgettoBase64URL()[C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Z[BIZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Z[BIZLjava/util/Base64$Encoder-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode0([BII[B)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "outLength(I)I": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encode([B[B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode([B)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodeToString([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "withoutPadding()Ljava/util/Base64$Encoder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/io/OutputStream;)Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Base64;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDecoder()Ljava/util/Base64$Decoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoder()Ljava/util/Base64$Encoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMimeDecoder()Ljava/util/Base64$Decoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMimeEncoder()Ljava/util/Base64$Encoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMimeEncoder(I[B)Ljava/util/Base64$Encoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUrlDecoder()Ljava/util/Base64$Decoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUrlEncoder()Ljava/util/Base64$Encoder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/BitSet$1BitSetSpliterator;": {"fields": {"est:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "root:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/BitSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/BitSet;IIIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/BitSet;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ADDRESS_BITS_PER_WORD:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BITS_PER_WORD:I": {"value": "0x40", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BIT_INDEX_MASK:I": {"value": "0x3f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WORD_MASK:J": {"value": "-0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6efd887e3934ab21L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sizeIsSticky:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "words:[J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wordsInUse:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetwords(Ljava/util/BitSet;)[J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwordsInUse(Ljava/util/BitSet;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mnextSetBit(Ljava/util/BitSet;II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smwordIndex(I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([J)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInvariants()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkRange(II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureCapacity(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expandTo(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initWords(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextSetBit(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "recalculateWordsInUse()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trimToSize()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/nio/ByteBuffer;)Ljava/util/BitSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/nio/LongBuffer;)Ljava/util/BitSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf([B)Ljava/util/BitSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf([J)Ljava/util/BitSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wordIndex(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "and(Ljava/util/BitSet;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andNot(Ljava/util/BitSet;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cardinality()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flip(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(II)Ljava/util/BitSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intersects(Ljava/util/BitSet;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextClearBit(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextSetBit(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/BitSet;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousClearBit(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousSetBit(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(IIZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(IZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toByteArray()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLongArray()[J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "xor(Ljava/util/BitSet;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Calendar$AvailableCalendarTypes;": {"fields": {"SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetSET()Ljava/util/Set;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Calendar$Builder;": {"fields": {"NFIELDS:I": {"value": "0x12", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_YEAR:I": {"value": "0x11", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fields:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstDayOfWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "instant:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lenient:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxFieldIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimalDaysInFirstWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextStamp:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zone:Ljava/util/TimeZone;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allocateFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalSet(II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isInstantSet()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidWeekParameter(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/util/Calendar;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(II)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCalendarType(Ljava/lang/String;)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(III)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFields([I)Ljava/util/Calendar$Builder;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInstant(J)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInstant(Ljava/util/Date;)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLenient(Z)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocale(Ljava/util/Locale;)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeOfDay(III)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeOfDay(IIII)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeZone(Ljava/util/TimeZone;)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWeekDate(III)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWeekDefinition(II)Ljava/util/Calendar$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Calendar$CalendarAccessControlContext;": {"fields": {"INSTANCE:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Calendar;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL_FIELDS:I": {"value": "0x1ffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ALL_STYLES:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AM:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AM_PM:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AM_PM_MASK:I": {"value": "0x200", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "APRIL:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "AUGUST:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMPUTED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DATE_MASK:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_MONTH:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_MONTH_MASK:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_WEEK:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK_IN_MONTH:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_WEEK_IN_MONTH_MASK:I": {"value": "0x100", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_WEEK_MASK:I": {"value": "0x80", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_YEAR:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_OF_YEAR_MASK:I": {"value": "0x40", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DECEMBER:I": {"value": "0xb", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DST_OFFSET:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DST_OFFSET_MASK:I": {"value": "0x10000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ERA:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERA_MASK:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FEBRUARY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FIELD_COUNT:I": {"value": "0x11", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FIELD_NAME:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FRIDAY:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_MASK:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOUR_OF_DAY:I": {"value": "0xb", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_OF_DAY_MASK:I": {"value": "0x800", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JANUARY:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JULY:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JUNE:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONG:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONG_FORMAT:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LONG_STANDALONE:I": {"value": "0x8002", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MARCH:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAY:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLISECOND:I": {"value": "0xe", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLISECOND_MASK:I": {"value": "0x4000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINIMUM_USER_STAMP:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINUTE:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE_MASK:I": {"value": "0x1000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MONDAY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTH:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MONTH_MASK:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NARROW_FORMAT:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NARROW_STANDALONE:I": {"value": "0x8004", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOVEMBER:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OCTOBER:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PM:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SATURDAY:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND:I": {"value": "0xd", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND_MASK:I": {"value": "0x2000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEPTEMBER:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT_FORMAT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SHORT_STANDALONE:I": {"value": "0x8001", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STANDALONE_MASK:I": {"value": "0x8000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SUNDAY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "THURSDAY:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TUESDAY:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDECIMBER:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNSET:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEDNESDAY:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_MONTH:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_MONTH_MASK:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WEEK_OF_YEAR:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEEK_OF_YEAR_MASK:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "YEAR:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "YEAR_MASK:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZONE_OFFSET:I": {"value": "0xf", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ZONE_OFFSET_MASK:I": {"value": "0x8000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cachedLocaleData:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "currentSerialVersion:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x1915b2e13723a472L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "areAllFieldsSet:Z": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "areFieldsSet:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fields:[I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDayOfWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSet:[Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTimeSet:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lenient:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimalDaysInFirstWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextStamp:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sharedZone:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stamp:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "time:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zone:Ljava/util/TimeZone;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/TimeZone;Ljava/util/Locale;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adjustStamp()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "aggregateStamp(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendValue(Ljava/lang/StringBuilder;Ljava/lang/String;ZJ)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareTo(J)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createCalendar(Ljava/util/TimeZone;Ljava/util/Locale;)Ljava/util/Calendar;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableCalendarTypes()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayNamesImpl(IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFieldName(I)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFieldStrings(IILjava/text/DateFormatSymbols;)[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance()Ljava/util/Calendar;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/util/Calendar;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/TimeZone;)Ljava/util/Calendar;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/TimeZone;Ljava/util/Locale;)Ljava/util/Calendar;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJapaneseImperialInstance(Ljava/util/TimeZone;Ljava/util/Locale;)Ljava/util/Calendar;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMillisOf(Ljava/util/Calendar;)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invalidateWeekFields()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFieldSet(II)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isNarrowFormatStyle(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isNarrowStyle(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isStandaloneStyle(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "setWeekCountData(Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toStandaloneStyle(I)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateTime()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "after(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "before(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkDisplayNameParams(IIIILjava/util/Locale;I)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/util/Calendar;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complete()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeFields()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeTime()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseStyle(I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(IILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayNames(IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirstDayOfWeek()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGreatestMinimum(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLeastMaximum(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximum(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimalDaysInFirstWeek()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimum(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSetStateFields()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTime()Ljava/util/Date;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeInMillis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWeekYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWeeksInWeekYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getZone()Ljava/util/TimeZone;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalGet(I)I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalSet(II)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isExternallySet(I)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFullyNormalized()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLenient()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPartiallyNormalized()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWeekDateSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectFields()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(III)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(IIIII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(IIIIII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFieldsComputed(I)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setFieldsNormalized(I)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setFirstDayOfWeek(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLenient(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinimalDaysInFirstWeek(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(Ljava/util/Date;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeInMillis(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeZone(Ljava/util/TimeZone;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUnnormalized()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setWeekDate(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setZoneShared(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toInstant()Ljava/time/Instant;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/CollSer;": {"fields": {"IMM_LIST:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IMM_MAP:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IMM_SET:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x578eabb63a1ba811L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I[Ljava/lang/Object;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/Collection;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$1;": {"fields": {"hasNext:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$2;": {"fields": {"est:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$element:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$3;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$c:Ljava/util/Collection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$AsLIFOQueue;": {"fields": {"serialVersionUID:J": {"value": "0x19020d92eca0694cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "q:Ljava/util/Deque;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Deque;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedCollection$1;": {"fields": {"this$0:Ljava/util/Collections$CheckedCollection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$it:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedCollection;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedCollection;": {"fields": {"serialVersionUID:J": {"value": "0x15e96dfd18e6cc6fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "c:Ljava/util/Collection;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroLengthElementArray:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badElementMsg(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zeroLengthElementArray()[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedCopyOf(Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "typeCheck(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Collections$CheckedList$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collections$CheckedList;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/UnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedList;Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedList$1;": {"fields": {"this$0:Ljava/util/Collections$CheckedList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$i:Ljava/util/ListIterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedList;Ljava/util/ListIterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedList;": {"fields": {"serialVersionUID:J": {"value": "0xe7ce7692c45f7cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "list:Ljava/util/List;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$replaceAll$0$java-util-Collections$CheckedList(Ljava/util/function/UnaryOperator;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collections$CheckedMap;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedMap;Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collections$CheckedMap;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedMap;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Collections$CheckedMap;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedMap;Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$CheckedEntrySet$1;": {"fields": {"this$0:Ljava/util/Collections$CheckedMap$CheckedEntrySet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$i:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$valueType:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CheckedMap$CheckedEntrySet;Ljava/util/Iterator;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$CheckedEntrySet$CheckedEntry;": {"fields": {"e:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map$Entry;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badValueMsg(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap$CheckedEntrySet;": {"fields": {"s:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batchRemove(Ljava/util/Collection;Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkedEntry(Ljava/util/Map$Entry;Ljava/lang/Class;)Ljava/util/Collections$CheckedMap$CheckedEntrySet$CheckedEntry;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/util/Map$Entry;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedMap;": {"fields": {"serialVersionUID:J": {"value": "0x4fb2bcdf0d186368L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyType:Ljava/lang/Class;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueType:Ljava/lang/Class;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badKeyMsg(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badValueMsg(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCheck(Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCheck(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$computeIfAbsent$1$java-util-Collections$CheckedMap(Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$merge$2$java-util-Collections$CheckedMap(Ljava/util/function/BiFunction;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$typeCheck$0$java-util-Collections$CheckedMap(Ljava/util/function/BiFunction;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedNavigableMap;": {"fields": {"serialVersionUID:J": {"value": "-0x4357691bf8b35350L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nm:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/NavigableMap;Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedNavigableSet;": {"fields": {"serialVersionUID:J": {"value": "-0x4b581c0c444127caL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ns:Ljava/util/NavigableSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/NavigableSet;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedQueue;": {"fields": {"serialVersionUID:J": {"value": "0x13e39424e458cbb7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "queue:Ljava/util/Queue;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Queue;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedRandomAccessList;": {"fields": {"serialVersionUID:J": {"value": "0x16bc0e55a2d7f2f1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedSet;": {"fields": {"serialVersionUID:J": {"value": "0x41249ba27ad9ffabL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedSortedMap;": {"fields": {"serialVersionUID:J": {"value": "0x16332c973afe036eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sm:Ljava/util/SortedMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedMap;Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CheckedSortedSet;": {"fields": {"serialVersionUID:J": {"value": "0x163406ba7362eb0fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ss:Ljava/util/SortedSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedSet;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CopiesList$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collections$CopiesList;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CopiesList;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CopiesList$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collections$CopiesList;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$CopiesList;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptyEnumeration;": {"fields": {"EMPTY_ENUMERATION:Ljava/util/Collections$EmptyEnumeration;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$CopiesList;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x26033c45b17003f8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "element:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "n:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$parallelStream$1$java-util-Collections$CopiesList(I)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$stream$0$java-util-Collections$CopiesList(I)Ljava/lang/Object;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptyIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Collections$EmptyIterator;": {"fields": {"EMPTY_ITERATOR:Ljava/util/Collections$EmptyIterator;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Collections$EmptyIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptyList-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Collections$EmptyList;": {"fields": {"serialVersionUID:J": {"value": "0x7ab817b43ca79edeL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/util/Collections$EmptyList-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptyListIterator;": {"fields": {"EMPTY_ITERATOR:Ljava/util/Collections$EmptyListIterator;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptyMap-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Collections$EmptyMap;": {"fields": {"serialVersionUID:J": {"value": "0x593614855adce7d0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/util/Collections$EmptyMap-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$EmptySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Collections$EmptySet;": {"fields": {"serialVersionUID:J": {"value": "0x15f5721db403cb28L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Collections$EmptySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$ReverseComparator2;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x3fa6c354d51L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "cmp:Ljava/util/Comparator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reversed()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$ReverseComparator;": {"fields": {"REVERSE_ORDER:Ljava/util/Collections$ReverseComparator;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x64048af0534e4ad0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "compare(Ljava/lang/Comparable;Ljava/lang/Comparable;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reversed()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SetFromMap;": {"fields": {"serialVersionUID:J": {"value": "0x2210b25045f21fc4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "m:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "s:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SingletonList;": {"fields": {"serialVersionUID:J": {"value": "0x2aef29103ca79b97L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "element:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SingletonMap;": {"fields": {"serialVersionUID:J": {"value": "-0x60dcf66e8e80946fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "k:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "v:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SingletonSet;": {"fields": {"serialVersionUID:J": {"value": "0x2c52419829c0b1bfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "element:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedCollection;": {"fields": {"serialVersionUID:J": {"value": "0x2a61f84d099c99b5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "c:Ljava/util/Collection;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "mutex:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Collection;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedList;": {"fields": {"serialVersionUID:J": {"value": "-0x6b9c101c7cbbef84L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "list:Ljava/util/List;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/List;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedMap;": {"fields": {"serialVersionUID:J": {"value": "0x1b73f9094b4b397bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "mutex:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Map;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedNavigableMap;": {"fields": {"serialVersionUID:J": {"value": "0x9b4bd8b2cd84ef7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nm:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/NavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/NavigableMap;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedNavigableSet;": {"fields": {"serialVersionUID:J": {"value": "-0x4c679232c74fb266L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ns:Ljava/util/NavigableSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/NavigableSet;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/NavigableSet;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedRandomAccessList;": {"fields": {"serialVersionUID:J": {"value": "0x153e0c6c865668d2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/List;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedSet;": {"fields": {"serialVersionUID:J": {"value": "0x6c3c27902eedf3cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Set;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedSortedMap;": {"fields": {"serialVersionUID:J": {"value": "-0x7a194bdf48d1f3d1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sm:Ljava/util/SortedMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/SortedMap;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$SynchronizedSortedSet;": {"fields": {"serialVersionUID:J": {"value": "0x78adb1384b50312eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ss:Ljava/util/SortedSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedSet;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/SortedSet;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableCollection;": {"fields": {"serialVersionUID:J": {"value": "0x19420080cb5ef71eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "c:Ljava/util/Collection;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableCollection$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/Collections$UnmodifiableCollection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$UnmodifiableCollection;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableList$1;": {"fields": {"i:Ljava/util/ListIterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/Collections$UnmodifiableList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$index:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$UnmodifiableList;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableList;": {"fields": {"serialVersionUID:J": {"value": "-0x3f0dace4a1371f0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "list:Ljava/util/List;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1;": {"fields": {"i:Ljava/util/Iterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry;": {"fields": {"e:Ljava/util/Map$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map$Entry;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet;": {"fields": {"serialVersionUID:J": {"value": "0x6d0066a59f08eab5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entryConsumer(Ljava/util/function/Consumer;)Ljava/util/function/Consumer;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$entryConsumer$0(Ljava/util/function/Consumer;Ljava/util/Map$Entry;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallelStream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap;": {"fields": {"serialVersionUID:J": {"value": "-0xe5a57018b0af8beL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "values:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntrySetSpliterator;": {"fields": {"s:Ljava/util/Spliterator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExactSizeIfKnown()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasCharacteristics(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableNavigableMap;": {"fields": {"EMPTY_NAVIGABLE_MAP:Ljava/util/Collections$UnmodifiableNavigableMap$EmptyNavigableMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x436bc6da7e6295e5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nm:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetEMPTY_NAVIGABLE_MAP()Ljava/util/Collections$UnmodifiableNavigableMap$EmptyNavigableMap;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/NavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableNavigableMap$EmptyNavigableMap;": {"fields": {"serialVersionUID:J": {"value": "-0x1f13ab0182e3f294L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableNavigableSet$EmptyNavigableSet;": {"fields": {"serialVersionUID:J": {"value": "-0x574f052f21e216beL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/Collections$UnmodifiableNavigableSet;": {"fields": {"EMPTY_NAVIGABLE_SET:Ljava/util/NavigableSet;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x53a5cc34698b7d79L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ns:Ljava/util/NavigableSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetEMPTY_NAVIGABLE_SET()Ljava/util/NavigableSet;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/NavigableSet;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableRandomAccessList;": {"fields": {"serialVersionUID:J": {"value": "-0x2348186ae0b7b9b1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableSet;": {"fields": {"serialVersionUID:J": {"value": "-0x7fe26d2e70647fabL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableSortedMap;": {"fields": {"serialVersionUID:J": {"value": "-0x7a37d6d72c5a28f6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sm:Ljava/util/SortedMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections$UnmodifiableSortedSet;": {"fields": {"serialVersionUID:J": {"value": "-0x4467db70141310fdL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ss:Ljava/util/SortedSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedSet;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Collections;": {"fields": {"BINARYSEARCH_THRESHOLD:I": {"value": "0x1388", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COPY_THRESHOLD:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_LIST:Ljava/util/List;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EMPTY_MAP:Ljava/util/Map;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EMPTY_SET:Ljava/util/Set;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FILL_THRESHOLD:I": {"value": "0x19", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INDEXOFSUBLIST_THRESHOLD:I": {"value": "0x23", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REPLACEALL_THRESHOLD:I": {"value": "0xb", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REVERSE_THRESHOLD:I": {"value": "0x12", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ROTATE_THRESHOLD:I": {"value": "0x64", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHUFFLE_THRESHOLD:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "r:Ljava/util/Random;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAll(Ljava/util/Collection;[Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLifoQueue(Ljava/util/Deque;)Ljava/util/Queue;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch(Ljava/util/List;Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "binarySearch(Ljava/util/List;Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedCollection(Ljava/util/Collection;Ljava/lang/Class;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedList(Ljava/util/List;Ljava/lang/Class;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedMap(Ljava/util/Map;Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedNavigableMap(Ljava/util/NavigableMap;Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/NavigableMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedNavigableSet(Ljava/util/NavigableSet;Ljava/lang/Class;)Ljava/util/NavigableSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedQueue(Ljava/util/Queue;Ljava/lang/Class;)Ljava/util/Queue;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedSet(Ljava/util/Set;Ljava/lang/Class;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedSortedMap(Ljava/util/SortedMap;Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/SortedMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkedSortedSet(Ljava/util/SortedSet;Ljava/lang/Class;)Ljava/util/SortedSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copy(Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disjoint(Ljava/util/Collection;Ljava/util/Collection;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyEnumeration()Ljava/util/Enumeration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyIterator()Ljava/util/Iterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyList()Ljava/util/List;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyListIterator()Ljava/util/ListIterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyMap()Ljava/util/Map;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyNavigableMap()Ljava/util/NavigableMap;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyNavigableSet()Ljava/util/NavigableSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptySet()Ljava/util/Set;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptySortedMap()Ljava/util/SortedMap;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptySortedSet()Ljava/util/SortedSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumeration(Ljava/util/Collection;)Ljava/util/Enumeration;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eq(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fill(Ljava/util/List;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "frequency(Ljava/util/Collection;Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/util/ListIterator;I)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOfSubList(Ljava/util/List;Ljava/util/List;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexedBinarySearch(Ljava/util/List;Ljava/lang/Object;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexedBinarySearch(Ljava/util/List;Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iteratorBinarySearch(Ljava/util/List;Ljava/lang/Object;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iteratorBinarySearch(Ljava/util/List;Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastIndexOfSubList(Ljava/util/List;Ljava/util/List;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/util/Enumeration;)Ljava/util/ArrayList;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/util/Collection;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/util/Collection;Ljava/util/Comparator;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/util/Collection;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/util/Collection;Ljava/util/Comparator;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nCopies(ILjava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSetFromMap(Ljava/util/Map;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/List;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverse(Ljava/util/List;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseOrder(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotate(Ljava/util/List;I)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rotate1(Ljava/util/List;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotate2(Ljava/util/List;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shuffle(Ljava/util/List;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shuffle(Ljava/util/List;Ljava/util/Random;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "singleton(Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "singletonIterator(Ljava/lang/Object;)Ljava/util/Iterator;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "singletonList(Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "singletonMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "singletonSpliterator(Ljava/lang/Object;)Ljava/util/Spliterator;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sort(Ljava/util/List;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/List;Ljava/util/Comparator;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "swap(Ljava/util/List;II)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "swap([Ljava/lang/Object;II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "synchronizedCollection(Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedCollection(Ljava/util/Collection;Ljava/lang/Object;)Ljava/util/Collection;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "synchronizedList(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedList(Ljava/util/List;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "synchronizedMap(Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedNavigableMap(Ljava/util/NavigableMap;)Ljava/util/NavigableMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedNavigableSet(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedSet(Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedSet(Ljava/util/Set;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "synchronizedSortedMap(Ljava/util/SortedMap;)Ljava/util/SortedMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "synchronizedSortedSet(Ljava/util/SortedSet;)Ljava/util/SortedSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableCollection(Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableList(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableMap(Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableNavigableMap(Ljava/util/NavigableMap;)Ljava/util/NavigableMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableNavigableSet(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableSet(Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableSortedMap(Ljava/util/SortedMap;)Ljava/util/SortedMap;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unmodifiableSortedSet(Ljava/util/SortedSet;)Ljava/util/SortedSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "zeroLengthArray(Ljava/lang/Class;)[Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/ComparableTimSort;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INITIAL_TMP_STORAGE_LENGTH:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_GALLOP:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_MERGE:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "a:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minGallop:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runBase:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runLen:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stackSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmp:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpBase:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;[Ljava/lang/Object;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "binarySort([Ljava/lang/Object;III)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "countRunAndMakeAscending([Ljava/lang/Object;II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureCapacity(I)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gallopLeft(Ljava/lang/Comparable;[Ljava/lang/Object;III)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gallopRight(Ljava/lang/Comparable;[Ljava/lang/Object;III)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeAt(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeCollapse()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeForceCollapse()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeHi(IIII)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeLo(IIII)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minRunLength(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pushRun(II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverseRange([Ljava/lang/Object;II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([Ljava/lang/Object;II[Ljava/lang/Object;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToDoubleFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;Ljava/util/Comparator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToIntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda4;": {"fields": {"f$0:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToLongFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator;": {"fields": {}, "methods": {"comparing(Ljava/util/function/Function;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparing(Ljava/util/function/Function;Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingInt(Ljava/util/function/ToIntFunction;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingLong(Ljava/util/function/ToLongFunction;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$comparing$77a9974f$1(Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparing$ea9a8b3a$1(Ljava/util/Comparator;Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingDouble$8dcf42ea$1(Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingInt$7b0bb60$1(Ljava/util/function/ToIntFunction;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingLong$6043328a$1(Ljava/util/function/ToLongFunction;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$thenComparing$36697e65$1(Ljava/util/Comparator;Ljava/util/Comparator;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "naturalOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsFirst(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nullsLast(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reverseOrder()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reversed()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparing(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparing(Ljava/util/function/Function;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparing(Ljava/util/function/Function;Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparingDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparingInt(Ljava/util/function/ToIntFunction;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparingLong(Ljava/util/function/ToLongFunction;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparator$$ExternalSyntheticLambda5;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparators$NaturalOrderComparator;": {"fields": {"$VALUES:[Ljava/util/Comparators$NaturalOrderComparator;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSTANCE:Ljava/util/Comparators$NaturalOrderComparator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/Comparators$NaturalOrderComparator;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljava/util/Comparators$NaturalOrderComparator;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Comparable;Ljava/lang/Comparable;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reversed()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Comparators;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Comparators$NullComparator;": {"fields": {"serialVersionUID:J": {"value": "-0x690c62b248f521b8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "nullFirst:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "real:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ZLjava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reversed()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComparing(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ConcurrentModificationException;": {"fields": {"serialVersionUID:J": {"value": "-0x32e2ea9d89388843L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Currency;": {"fields": {"available:Ljava/util/HashSet;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "instances:Ljava/util/concurrent/ConcurrentMap;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2326cb5a6ee56e1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "currencyCode:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "icuCurrency:Landroid/icu/util/Currency;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Landroid/icu/util/Currency;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableCurrencies()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljava/util/Currency;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/util/Locale;)Ljava/util/Currency;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getCurrencyCode()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultFractionDigits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumericCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSymbol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSymbol(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Date;": {"fields": {"defaultCenturyStart:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gcal:Lsun/util/calendar/BaseCalendar;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jcal:Lsun/util/calendar/BaseCalendar;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x686a81014b597419L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ttb:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wtb:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cdate:Lsun/util/calendar/BaseCalendar$Date;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fastTime:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTC(IIIIII)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "convertToAbbr(Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/lang/StringBuilder;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/Instant;)Ljava/util/Date;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarDate()Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCalendarSystem(I)Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCalendarSystem(J)Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCalendarSystem(Lsun/util/calendar/BaseCalendar$Date;)Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJulianCalendar()Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private", "static", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMillisOf(Ljava/util/Date;)J": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTimeImpl()J": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalize()Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalize(Lsun/util/calendar/BaseCalendar$Date;)Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)J": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "after(Ljava/util/Date;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "before(Ljava/util/Date;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/util/Date;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDate()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDay()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHours()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinutes()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMonth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeconds()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimezoneOffset()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHours(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMinutes(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMonth(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSeconds(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setYear(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toGMTString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toInstant()Ljava/time/Instant;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLocaleString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Deque;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Dictionary;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/DoubleSummaryStatistics;": {"fields": {"count:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "max:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "min:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "simpleSum:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sum:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sumCompensation:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sumWithCompensation(D)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combine(Ljava/util/DoubleSummaryStatistics;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAverage()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCount()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMax()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMin()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSum()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/DualPivotQuicksort;": {"fields": {"COUNTING_SORT_THRESHOLD_FOR_BYTE:I": {"value": "0x1d", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COUNTING_SORT_THRESHOLD_FOR_SHORT_OR_CHAR:I": {"value": "0xc80", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSERTION_SORT_THRESHOLD:I": {"value": "0x2f", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_RUN_COUNT:I": {"value": "0x43", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUM_BYTE_VALUES:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUM_CHAR_VALUES:I": {"value": "0x10000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUM_SHORT_VALUES:I": {"value": "0x10000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QUICKSORT_THRESHOLD:I": {"value": "0x11e", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSort([CII[CII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSort([DII[DII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSort([FII[FII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSort([SII[SII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([BII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([CIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([CII[CII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([DIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([DII[DII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([FIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([FII[FII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([IIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([III[III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([JIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([JII[JII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([SIIZ)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([SII[SII)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/DuplicateFormatFlagsException;": {"fields": {"serialVersionUID:J": {"value": "0x1203f23L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "flags:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFlags()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EmptyStackException;": {"fields": {"serialVersionUID:J": {"value": "0x46906f52485c554fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$EntryIterator$Entry-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$EntryIterator$Entry;": {"fields": {"index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$1:Ljava/util/EnumMap$EntryIterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetindex(Ljava/util/EnumMap$EntryIterator$Entry;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputindex(Ljava/util/EnumMap$EntryIterator$Entry;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap$EntryIterator;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap$EntryIterator;ILjava/util/EnumMap$EntryIterator$Entry-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIndexForEntryUse()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Enum;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$EntryIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$EntryIterator;": {"fields": {"lastReturnedEntry:Ljava/util/EnumMap$EntryIterator$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$EntryIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$EntrySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$EntrySet;": {"fields": {"this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$EntrySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillEntryArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$EnumMapIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$EnumMapIterator;": {"fields": {"index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturnedIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$EnumMapIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkLastReturnedIndex()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$KeyIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$KeyIterator;": {"fields": {"this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$KeyIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Enum;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$KeySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$KeySet;": {"fields": {"this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$KeySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$ValueIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$ValueIterator;": {"fields": {"this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$ValueIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap$Values-IA;": {"fields": {}, "methods": {}}, "Ljava/util/EnumMap$Values;": {"fields": {"this$0:Ljava/util/EnumMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EnumMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumMap;Ljava/util/EnumMap$Values-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumMap;": {"fields": {"NULL:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x65d7df7be907ca1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "keyUniverse:[Ljava/lang/Enum;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vals:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetkeyUniverse(Ljava/util/EnumMap;)[Ljava/lang/Enum;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetsize(Ljava/util/EnumMap;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetvals(Ljava/util/EnumMap;)[Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputsize(Ljava/util/EnumMap;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mcontainsMapping(Ljava/util/EnumMap;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mentryHashCode(Ljava/util/EnumMap;I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mmaskNull(Ljava/util/EnumMap;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mremoveMapping(Ljava/util/EnumMap;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$munmaskNull(Ljava/util/EnumMap;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/EnumMap;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsMapping(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entryHashCode(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/util/EnumMap;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKeyUniverse(Ljava/lang/Class;)[Ljava/lang/Enum;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidKey(Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "removeMapping(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCheck(Ljava/lang/Enum;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmaskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/EnumMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Enum;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EnumSet$SerializationProxy;": {"fields": {"ZERO_LENGTH_ENUM_ARRAY:[Ljava/lang/Enum;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x507d3db7654cad1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elementType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "elements:[Ljava/lang/Enum;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/EnumSet;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/EnumSet;": {"fields": {"serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elementType:Ljava/lang/Class;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "universe:[Ljava/lang/Enum;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;[Ljava/lang/Enum;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "access$000()[Ljava/lang/Enum;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allOf(Ljava/lang/Class;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complementOf(Ljava/util/EnumSet;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf(Ljava/util/Collection;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyOf(Ljava/util/EnumSet;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUniverse(Ljava/lang/Class;)[Ljava/lang/Enum;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "noneOf(Ljava/lang/Class;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Enum;[Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(Ljava/lang/Enum;Ljava/lang/Enum;)Ljava/util/EnumSet;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "addAll()V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addRange(Ljava/lang/Enum;Ljava/lang/Enum;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/EnumSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complement()V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCheck(Ljava/lang/Enum;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/Enumeration$1;": {"fields": {"this$0:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Enumeration;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Enumeration;": {"fields": {}, "methods": {"asIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasMoreElements()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EventListener;": {"fields": {}, "methods": {}}, "Ljava/util/EventListenerProxy;": {"fields": {"listener:Ljava/util/EventListener;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/EventListener;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getListener()Ljava/util/EventListener;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/EventObject;": {"fields": {"serialVersionUID:J": {"value": "0x4c8d094e186d7da8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "source:Ljava/lang/Object;": {"value": null, "other": [".field", "protected", "transient"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSource()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/FormatFlagsConversionMismatchException;": {"fields": {"serialVersionUID:J": {"value": "0x123c11eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "c:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "f:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConversion()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFlags()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Formattable;": {"fields": {}, "methods": {"formatTo(Ljava/util/Formatter;III)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/FormattableFlags;": {"fields": {"ALTERNATE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LEFT_JUSTIFY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UPPERCASE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$BigDecimalLayoutForm;": {"fields": {"$VALUES:[Ljava/util/Formatter$BigDecimalLayoutForm;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DECIMAL_FLOAT:Ljava/util/Formatter$BigDecimalLayoutForm;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SCIENTIFIC:Ljava/util/Formatter$BigDecimalLayoutForm;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/Formatter$BigDecimalLayoutForm;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/util/Formatter$BigDecimalLayoutForm;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Formatter$Conversion;": {"fields": {"BOOLEAN:C": {"value": "'b'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BOOLEAN_UPPER:C": {"value": "'B'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CHARACTER:C": {"value": "'c'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CHARACTER_UPPER:C": {"value": "'C'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE_TIME:C": {"value": "'t'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE_TIME_UPPER:C": {"value": "'T'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DECIMAL_FLOAT:C": {"value": "'f'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DECIMAL_INTEGER:C": {"value": "'d'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GENERAL:C": {"value": "'g'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GENERAL_UPPER:C": {"value": "'G'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HASHCODE:C": {"value": "'h'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HASHCODE_UPPER:C": {"value": "'H'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEXADECIMAL_FLOAT:C": {"value": "'a'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEXADECIMAL_FLOAT_UPPER:C": {"value": "'A'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEXADECIMAL_INTEGER:C": {"value": "'x'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEXADECIMAL_INTEGER_UPPER:C": {"value": "'X'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LINE_SEPARATOR:C": {"value": "'n'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OCTAL_INTEGER:C": {"value": "'o'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PERCENT_SIGN:C": {"value": "'%'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SCIENTIFIC:C": {"value": "'e'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SCIENTIFIC_UPPER:C": {"value": "'E'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STRING:C": {"value": "'s'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STRING_UPPER:C": {"value": "'S'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCharacter(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFloat(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isGeneral(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isInteger(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isText(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$DateTime;": {"fields": {"AM_PM:C": {"value": "'p'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CENTURY:C": {"value": "'C'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE:C": {"value": "'D'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DATE_TIME:C": {"value": "'c'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_MONTH:C": {"value": "'e'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_MONTH_0:C": {"value": "'d'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DAY_OF_YEAR:C": {"value": "'j'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOUR:C": {"value": "'l'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOUR_0:C": {"value": "'I'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOUR_OF_DAY:C": {"value": "'k'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HOUR_OF_DAY_0:C": {"value": "'H'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ISO_STANDARD_DATE:C": {"value": "'F'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MILLISECOND:C": {"value": "'L'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MILLISECOND_SINCE_EPOCH:C": {"value": "'Q'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINUTE:C": {"value": "'M'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MONTH:C": {"value": "'m'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OF_DAY:C": {"value": "'A'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OF_DAY_ABBREV:C": {"value": "'a'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OF_MONTH:C": {"value": "'B'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OF_MONTH_ABBREV:C": {"value": "'b'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_OF_MONTH_ABBREV_X:C": {"value": "'h'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NANOSECOND:C": {"value": "'N'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECOND:C": {"value": "'S'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDS_SINCE_EPOCH:C": {"value": "'s'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIME:C": {"value": "'T'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIME_12_HOUR:C": {"value": "'r'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIME_24_HOUR:C": {"value": "'R'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "YEAR_2:C": {"value": "'y'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "YEAR_4:C": {"value": "'Y'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZONE:C": {"value": "'Z'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZONE_NUMERIC:C": {"value": "'z'", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid(C)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$FixedString;": {"fields": {"s:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Formatter;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Formatter;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Formatter$Flags;": {"fields": {"ALTERNATE:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GROUP:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LEADING_SPACE:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LEFT_JUSTIFY:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NONE:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PARENTHESES:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PLUS:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PREVIOUS:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UPPERCASE:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ZERO_PAD:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flags:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$madd(Ljava/util/Formatter$Flags;Ljava/util/Formatter$Flags;)Ljava/util/Formatter$Flags;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/util/Formatter$Flags;)Ljava/util/Formatter$Flags;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(C)Ljava/util/Formatter$Flags;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)Ljava/util/Formatter$Flags;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString(Ljava/util/Formatter$Flags;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contains(Ljava/util/Formatter$Flags;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dup()Ljava/util/Formatter$Flags;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/util/Formatter$Flags;)Ljava/util/Formatter$Flags;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$FormatSpecifier$BigDecimalLayout;": {"fields": {"dot:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exp:Ljava/lang/StringBuilder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mant:Ljava/lang/StringBuilder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scale:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$1:Ljava/util/Formatter$FormatSpecifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Formatter$FormatSpecifier;Ljava/math/BigInteger;ILjava/util/Formatter$BigDecimalLayoutForm;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "layout(Ljava/math/BigInteger;ILjava/util/Formatter$BigDecimalLayoutForm;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharArray(Ljava/lang/StringBuilder;)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exponent()[C": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasDot()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "layoutChars()[C": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mantissa()[C": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scale()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$FormatSpecifier;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "c:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dt:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "f:Ljava/util/Formatter$Flags;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "precision:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Formatter;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "width:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Formatter;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addDot([C)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addZeros([CI)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjustWidth(ILjava/util/Formatter$Flags;Z)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkBadFlags([Ljava/util/Formatter$Flags;)V": {"other": [".method", "private", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkCharacter()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkDateTime()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkFloat()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkGeneral()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInteger()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkNumeric()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkText()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "conversion()C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "conversion(Ljava/lang/String;)C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "failConversion(CLjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "failMismatch(Ljava/util/Formatter$Flags;C)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flags(Ljava/lang/String;)Ljava/util/Formatter$Flags;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZero(Ljava/util/Locale;)C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexDouble(DI)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "justify(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leadingSign(Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedMagnitude(Ljava/lang/StringBuilder;JLjava/util/Formatter$Flags;ILjava/util/Locale;)Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedMagnitude(Ljava/lang/StringBuilder;[CLjava/util/Formatter$Flags;ILjava/util/Locale;)Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "precision(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/StringBuilder;Ljava/time/temporal/TemporalAccessor;CLjava/util/Locale;)Ljava/lang/Appendable;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/StringBuilder;Ljava/util/Calendar;CLjava/util/Locale;)Ljava/lang/Appendable;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(BLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(DLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(FLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(ILjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(JLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/StringBuilder;DLjava/util/Locale;Ljava/util/Formatter$Flags;CIZ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/StringBuilder;Ljava/math/BigDecimal;Ljava/util/Locale;Ljava/util/Formatter$Flags;CIZ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/math/BigDecimal;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/math/BigInteger;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/time/temporal/TemporalAccessor;CLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/util/Calendar;CLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(SLjava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printBoolean(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printCharacter(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printDateTime(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printFloat(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printHashCode(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printInteger(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "printString(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingSign(Ljava/lang/StringBuilder;Z)Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingZeros([CI)[C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "width(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flags()Ljava/util/Formatter$Flags;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "precision()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "width()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$FormatSpecifierParser;": {"fields": {"FLAGS:Ljava/lang/String;": {"value": "\",-(+# 0<\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "conv:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flags:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fs:Ljava/util/Formatter$FormatSpecifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "precision:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tT:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Formatter;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "width:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Formatter;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "advance()C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "back(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEnd()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextInt()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextIsInt()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peek()C": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEndIdx()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFormatSpecifier()Ljava/util/Formatter$FormatSpecifier;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Formatter$FormatString;": {"fields": {}, "methods": {"index()I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "print(Ljava/lang/Object;Ljava/util/Locale;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Formatter;": {"fields": {"MAX_FD_CHARS:I": {"value": "0x1e", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scaleUp:D": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "a:Ljava/lang/Appendable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "l:Ljava/util/Locale;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastException:Ljava/io/IOException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zero:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgeta(Ljava/util/Formatter;)Ljava/lang/Appendable;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetl(Ljava/util/Formatter;)Ljava/util/Locale;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetzero(Ljava/util/Formatter;)C": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetscaleUp()D": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputscaleUp(D)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/lang/String;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/lang/String;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/PrintStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Appendable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Appendable;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/charset/Charset;Ljava/util/Locale;Ljava/io/File;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Locale;Ljava/lang/Appendable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZero(Ljava/util/Locale;)C": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nonNullAppendable(Ljava/lang/Appendable;)Ljava/lang/Appendable;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)[Ljava/util/Formatter$FormatString;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharset(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/Formatter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/Locale;Ljava/lang/String;[Ljava/lang/Object;)Ljava/util/Formatter;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ioException()Ljava/io/IOException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "locale()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "out()Ljava/lang/Appendable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/FormatterClosedException;": {"fields": {"serialVersionUID:J": {"value": "0x1145af0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/GregorianCalendar;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AD:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BC:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BCE:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CE:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_GREGORIAN_CUTOVER:J": {"value": "-0xb1d069b5400L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EPOCH_OFFSET:I": {"value": "0xaf93b", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EPOCH_YEAR:I": {"value": "0x7b2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LEAP_MONTH_LENGTH:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LEAST_MAX_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MONTH_LENGTH:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_DAY:J": {"value": "0x5265c00L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_HOUR:I": {"value": "0x36ee80", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_MINUTE:I": {"value": "0xea60", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_SECOND:I": {"value": "0x3e8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_WEEK:J": {"value": "0x240c8400L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gcal:Lsun/util/calendar/Gregorian;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jcal:Lsun/util/calendar/JulianCalendar;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jeras:[Lsun/util/calendar/Era;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x70c228291a4f2f3fL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "cachedFixedDate:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "calsys:Lsun/util/calendar/BaseCalendar;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cdate:Lsun/util/calendar/BaseCalendar$Date;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gdate:Lsun/util/calendar/BaseCalendar$Date;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gregorianCutover:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gregorianCutoverDate:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gregorianCutoverYear:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gregorianCutoverYearJulian:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalFields:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zoneOffsets:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIIIIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/TimeZone;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/TimeZone;Ljava/util/Locale;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/TimeZone;Ljava/util/Locale;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "actualMonthLength()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjustDstOffsetForInvalidWallClock(JLjava/util/TimeZone;I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adjustForZoneAndDaylightSavingsTime(IJLjava/util/TimeZone;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "computeFields(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "from(Ljava/time/ZonedDateTime;)Ljava/util/GregorianCalendar;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarDate(J)Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCurrentFixedDate()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCutoverCalendarSystem()Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFixedDate(Lsun/util/calendar/BaseCalendar;II)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFixedDateJan1(Lsun/util/calendar/BaseCalendar$Date;J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFixedDateMonth1(Lsun/util/calendar/BaseCalendar$Date;J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGregorianCutoverDate()Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJulianCalendarSystem()Lsun/util/calendar/BaseCalendar;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLastJulianDate()Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNormalizedCalendar()Ljava/util/GregorianCalendar;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRolledValue(IIII)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWeekNumber(JJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getYearOffsetInMillis()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalGetEra()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCutoverYear(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monthLength(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monthLength(II)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pinDayOfMonth()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "setGregorianChange(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "yearLength()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "yearLength(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeFields()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeTime()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGreatestMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGregorianChange()Ljava/util/Date;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLeastMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWeekYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWeeksInWeekYear()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLeapYear(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWeekDateSupported()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(IZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGregorianChange(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeZone(Ljava/util/TimeZone;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWeekDate(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toZonedDateTime()Ljava/time/ZonedDateTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$EntryIterator;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Ljava/util/HashMap$EntrySet;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$EntrySpliterator;": {"fields": {}, "methods": {"(Ljava/util/HashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/HashMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$HashIterator;": {"fields": {"current:Ljava/util/HashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/HashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextNode()Ljava/util/HashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$HashMapSpliterator;": {"fields": {"current:Ljava/util/HashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/HashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFence()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/HashMap$KeyIterator;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$KeySet;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$KeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/HashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/HashMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$Node;": {"fields": {"hash:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "next:Ljava/util/HashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$TreeNode;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "left:Ljava/util/HashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/HashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/HashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "red:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "right:Ljava/util/HashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "balanceDeletion(Ljava/util/HashMap$TreeNode;Ljava/util/HashMap$TreeNode;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "balanceInsertion(Ljava/util/HashMap$TreeNode;Ljava/util/HashMap$TreeNode;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInvariants(Ljava/util/HashMap$TreeNode;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "moveRootToFront([Ljava/util/HashMap$Node;Ljava/util/HashMap$TreeNode;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateLeft(Ljava/util/HashMap$TreeNode;Ljava/util/HashMap$TreeNode;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateRight(Ljava/util/HashMap$TreeNode;Ljava/util/HashMap$TreeNode;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tieBreakOrder(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "find(ILjava/lang/Object;Ljava/lang/Class;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTreeNode(ILjava/lang/Object;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putTreeVal(Ljava/util/HashMap;[Ljava/util/HashMap$Node;ILjava/lang/Object;Ljava/lang/Object;)Ljava/util/HashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeTreeNode(Ljava/util/HashMap;[Ljava/util/HashMap$Node;Z)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root()Ljava/util/HashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "split(Ljava/util/HashMap;[Ljava/util/HashMap$Node;II)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "treeify([Ljava/util/HashMap$Node;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "untreeify(Ljava/util/HashMap;)Ljava/util/HashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/HashMap$ValueIterator;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$ValueSpliterator;": {"fields": {}, "methods": {"(Ljava/util/HashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/HashMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap$Values;": {"fields": {"this$0:Ljava/util/HashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/HashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashMap;": {"fields": {"DEFAULT_INITIAL_CAPACITY:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_LOAD_FACTOR:F": {"value": "0.75f", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_CAPACITY:I": {"value": "0x40000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_TREEIFY_CAPACITY:I": {"value": "0x40", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TREEIFY_THRESHOLD:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNTREEIFY_THRESHOLD:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x507dac1c31660d1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadFactor:F": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/util/HashMap$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparableClassFor(Ljava/lang/Object;)Ljava/lang/Class;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareComparables(Ljava/lang/Class;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash(Ljava/lang/Object;)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "tableSizeFor(I)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "afterNodeAccess(Ljava/util/HashMap$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterNodeInsertion(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterNodeRemoval(Ljava/util/HashMap$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "capacity()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalWriteEntries(Ljava/io/ObjectOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadFactor()F": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTreeNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$TreeNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putMapEntries(Ljava/util/Map;Z)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reinitialize()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNode(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/util/HashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replacementNode(Ljava/util/HashMap$Node;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replacementTreeNode(Ljava/util/HashMap$Node;Ljava/util/HashMap$Node;)Ljava/util/HashMap$TreeNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resize()[Ljava/util/HashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "treeifyBin([Ljava/util/HashMap$Node;I)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/HashSet;": {"fields": {"PRESENT:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x45bb7a6a694748ccL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "map:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IFZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable$EntrySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Hashtable$EntrySet;": {"fields": {"this$0:Ljava/util/Hashtable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Hashtable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Hashtable;Ljava/util/Hashtable$EntrySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/util/Map$Entry;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable$Enumerator;": {"fields": {"entry:Ljava/util/Hashtable$HashtableEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturned:Ljava/util/Hashtable$HashtableEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/util/Hashtable$HashtableEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Hashtable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Hashtable;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable$HashtableEntry;": {"fields": {"hash:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/Hashtable$HashtableEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/Hashtable$HashtableEntry;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable$KeySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Hashtable$KeySet;": {"fields": {"this$0:Ljava/util/Hashtable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Hashtable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Hashtable;Ljava/util/Hashtable$KeySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable$ValueCollection-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Hashtable$ValueCollection;": {"fields": {"this$0:Ljava/util/Hashtable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Hashtable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Hashtable;Ljava/util/Hashtable$ValueCollection-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Hashtable;": {"fields": {"ENTRIES:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KEYS:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "VALUES:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x13bb0f25214ae4b8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadFactor:F": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/util/Hashtable$HashtableEntry;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetcount(Ljava/util/Hashtable;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetmodCount(Ljava/util/Hashtable;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettable(Ljava/util/Hashtable;)[Ljava/util/Hashtable$HashtableEntry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputcount(Ljava/util/Hashtable;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputmodCount(Ljava/util/Hashtable;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetIterator(Ljava/util/Hashtable;I)Ljava/util/Iterator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addEntry(ILjava/lang/Object;Ljava/lang/Object;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEnumeration(I)Ljava/util/Enumeration;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getIterator(I)Ljava/util/Iterator;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "reconstitutionPut([Ljava/util/Hashtable$HashtableEntry;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()Ljava/util/Enumeration;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rehash()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$EntryIterator$Entry-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$EntryIterator$Entry;": {"fields": {"index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$1:Ljava/util/IdentityHashMap$EntryIterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetindex(Ljava/util/IdentityHashMap$EntryIterator$Entry;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputindex(Ljava/util/IdentityHashMap$EntryIterator$Entry;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap$EntryIterator;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap$EntryIterator;ILjava/util/IdentityHashMap$EntryIterator$Entry-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIndexForEntryUse()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$EntryIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$EntryIterator;": {"fields": {"lastReturnedEntry:Ljava/util/IdentityHashMap$EntryIterator$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$EntryIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$EntrySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$EntrySet;": {"fields": {"this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$EntrySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$EntrySpliterator;": {"fields": {}, "methods": {"(Ljava/util/IdentityHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/IdentityHashMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$IdentityHashMapIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$IdentityHashMapIterator;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexValid:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturnedIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "traversalTable:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$IdentityHashMapIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$IdentityHashMapSpliterator;": {"fields": {"est:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFence()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/IdentityHashMap$KeyIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$KeyIterator;": {"fields": {"this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$KeyIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$KeySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$KeySet;": {"fields": {"this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$KeySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$ValueIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$KeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/IdentityHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/IdentityHashMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$ValueIterator;": {"fields": {"this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$ValueIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$ValueSpliterator;": {"fields": {}, "methods": {"(Ljava/util/IdentityHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/IdentityHashMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap$Values-IA;": {"fields": {}, "methods": {}}, "Ljava/util/IdentityHashMap$Values;": {"fields": {"this$0:Ljava/util/IdentityHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/IdentityHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/IdentityHashMap;Ljava/util/IdentityHashMap$Values-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IdentityHashMap;": {"fields": {"DEFAULT_CAPACITY:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_CAPACITY:I": {"value": "0x20000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MINIMUM_CAPACITY:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NULL_KEY:Ljava/lang/Object;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x71a2650133f2e980L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/lang/Object;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mcontainsMapping(Ljava/util/IdentityHashMap;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mremoveMapping(Ljava/util/IdentityHashMap;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smhash(Ljava/lang/Object;I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smnextKeyIndex(II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "capacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeDeletion(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "containsMapping(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash(Ljava/lang/Object;I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextKeyIndex(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putForCreate(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "removeMapping(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resize(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmaskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllegalFormatCodePointException;": {"fields": {"serialVersionUID:J": {"value": "0x12325b6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "c:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodePoint()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllegalFormatConversionException;": {"fields": {"serialVersionUID:J": {"value": "0x10366beL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "arg:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "c:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(CLjava/lang/Class;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArgumentClass()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConversion()C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllegalFormatException;": {"fields": {"serialVersionUID:J": {"value": "0x11f55eaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/IllegalFormatFlagsException;": {"fields": {"serialVersionUID:J": {"value": "0xc1128L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "flags:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFlags()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllegalFormatPrecisionException;": {"fields": {"serialVersionUID:J": {"value": "0x11d81e0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "p:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrecision()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllformedLocaleException;": {"fields": {"serialVersionUID:J": {"value": "-0x48cd7d390c1316f9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "_errIdx:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/IllegalFormatWidthException;": {"fields": {"serialVersionUID:J": {"value": "0xfe39a6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "w:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWidth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$AbstractImmutableCollection;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$AbstractImmutableList;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subListRangeCheck(III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "outOfBounds(I)Ljava/lang/IndexOutOfBoundsException;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$AbstractImmutableMap;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$AbstractImmutableSet;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$List12;": {"fields": {"e0:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "e1:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$ListItr;": {"fields": {"cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isListIterator:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$ListN;": {"fields": {"EMPTY_LIST:Ljava/util/List;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "elements:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Map0;": {"fields": {"INSTANCE:Ljava/util/ImmutableCollections$Map0;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instance()Ljava/util/ImmutableCollections$Map0;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Map1;": {"fields": {"k0:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "v0:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$MapN$1$1;": {"fields": {"idx:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/ImmutableCollections$MapN$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ImmutableCollections$MapN$1;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ImmutableCollections$MapN$1;": {"fields": {"this$0:Ljava/util/ImmutableCollections$MapN;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ImmutableCollections$MapN;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$MapN;": {"fields": {"EMPTY_MAP:Ljava/util/Map;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "table:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "probe(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Set0;": {"fields": {"INSTANCE:Ljava/util/ImmutableCollections$Set0;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instance()Ljava/util/ImmutableCollections$Set0;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Set1;": {"fields": {"e0:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Set2$1;": {"fields": {"idx:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/ImmutableCollections$Set2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ImmutableCollections$Set2;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$Set2;": {"fields": {"e0:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "e1:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$SetN$1;": {"fields": {"idx:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/ImmutableCollections$SetN;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ImmutableCollections$SetN;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$SubList;": {"fields": {"offset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "root:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromList(Ljava/util/List;II)Ljava/util/ImmutableCollections$SubList;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromSubList(Ljava/util/ImmutableCollections$SubList;II)Ljava/util/ImmutableCollections$SubList;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rangeCheck(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections$SetN;": {"fields": {"EMPTY_SET:Ljava/util/Set;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "elements:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "probe(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ImmutableCollections;": {"fields": {"EXPAND_FACTOR:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SALT:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyList()Ljava/util/List;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listCopy(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uoe()Ljava/lang/UnsupportedOperationException;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/InputMismatchException;": {"fields": {"serialVersionUID:J": {"value": "0x7a47c7b1773996bcL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/InvalidPropertiesFormatException;": {"fields": {"serialVersionUID:J": {"value": "0x6bbbea5ee5f9cb5bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/IntSummaryStatistics;": {"fields": {"count:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "max:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "min:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sum:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(JIIJ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combine(Ljava/util/IntSummaryStatistics;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAverage()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCount()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMax()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMin()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSum()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Iterator;": {"fields": {}, "methods": {"forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/JapaneseImperialCalendar;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BEFORE_MEIJI:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BEFORE_MEIJI_ERA:Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EPOCH_OFFSET:I": {"value": "0xaf93b", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HEISEI:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LEAST_MAX_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MEIJI:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_VALUES:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE_DAY:J": {"value": "0x5265c00L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE_HOUR:I": {"value": "0x36ee80", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE_MINUTE:I": {"value": "0xea60", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONE_SECOND:I": {"value": "0x3e8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REIWA:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHOWA:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAISHO:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "currentEra:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eras:[Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gcal:Lsun/util/calendar/Gregorian;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jcal:Lsun/util/calendar/LocalGregorianCalendar;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2eb15d25e1c59a19L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sinceFixedDates:[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedFixedDate:J": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdate:Lsun/util/calendar/LocalGregorianCalendar$Date;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "originalFields:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zoneOffsets:[I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;Ljava/util/Locale;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;Ljava/util/Locale;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "actualMonthLength()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "computeFields(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEraIndex(Lsun/util/calendar/LocalGregorianCalendar$Date;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDate(III)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDateJan1(Lsun/util/calendar/LocalGregorianCalendar$Date;J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDateMonth1(Lsun/util/calendar/LocalGregorianCalendar$Date;J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedCalendar()Ljava/util/JapaneseImperialCalendar;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRolledValue(IIII)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTransitionEraIndex(Lsun/util/calendar/LocalGregorianCalendar$Date;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWeekNumber(JJ)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearOffsetInMillis(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "internalGetEra()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTransitionYear(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "monthLength(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "monthLength(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pinDayOfMonth(Lsun/util/calendar/LocalGregorianCalendar$Date;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeFields()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeTime()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActualMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCalendarType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(IILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayNames(IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getGreatestMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLeastMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimum(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "roll(IZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeZone(Ljava/util/TimeZone;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/JumboEnumSet;": {"fields": {"serialVersionUID:J": {"value": "0x4a3d96ac32134e0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elements:[J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetelements(Ljava/util/JumboEnumSet;)[J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetsize(Ljava/util/JumboEnumSet;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputsize(Ljava/util/JumboEnumSet;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;[Ljava/lang/Enum;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "recalculateSize()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Enum;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addRange(Ljava/lang/Enum;Ljava/lang/Enum;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/EnumSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complement()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/JumboEnumSet$EnumSetIterator;": {"fields": {"lastReturned:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastReturnedIndex:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/JumboEnumSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unseen:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unseenIndex:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/JumboEnumSet;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Enum;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/KeyValueHolder;": {"fields": {"key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedEntryIterator;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/LinkedHashMap$LinkedEntrySet;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedHashIterator;": {"fields": {"current:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextNode()Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"fields": {"after:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "before:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/LinkedHashMap$LinkedKeyIterator;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedKeySet;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedValueIterator;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap$LinkedValues;": {"fields": {"this$0:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedHashMap;": {"fields": {"serialVersionUID:J": {"value": "0x34c04e5c106cc0fbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "accessOrder:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "head:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/LinkedHashMap$LinkedHashMapEntry;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IFZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "linkNodeLast(Ljava/util/LinkedHashMap$LinkedHashMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferLinks(Ljava/util/LinkedHashMap$LinkedHashMapEntry;Ljava/util/LinkedHashMap$LinkedHashMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterNodeAccess(Ljava/util/HashMap$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterNodeInsertion(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterNodeRemoval(Ljava/util/HashMap$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eldest()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalWriteEntries(Ljava/io/ObjectOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTreeNode(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/HashMap$Node;)Ljava/util/HashMap$TreeNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reinitialize()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeEldestEntry(Ljava/util/Map$Entry;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replacementNode(Ljava/util/HashMap$Node;Ljava/util/HashMap$Node;)Ljava/util/HashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replacementTreeNode(Ljava/util/HashMap$Node;Ljava/util/HashMap$Node;)Ljava/util/HashMap$TreeNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedList$DescendingIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/LinkedHashSet;": {"fields": {"serialVersionUID:J": {"value": "-0x279328a56a22d5e2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedList$DescendingIterator;": {"fields": {"itr:Ljava/util/LinkedList$ListItr;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/LinkedList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedList;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/LinkedList;Ljava/util/LinkedList$DescendingIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedList$LLSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "list:Ljava/util/LinkedList;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedList;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEst()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedList$ListItr;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturned:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/LinkedList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedList;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkForComodification()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/LinkedList$Node;": {"fields": {"item:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "next:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "prev:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/LinkedList$Node;Ljava/lang/Object;Ljava/util/LinkedList$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/LinkedList;": {"fields": {"serialVersionUID:J": {"value": "0xc29535d4a608822L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "first:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "last:Ljava/util/LinkedList$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkElementIndex(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPositionIndex(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isElementIndex(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPositionIndex(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linkFirst(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "outOfBoundsMsg(I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "superClone()Ljava/util/LinkedList;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkFirst(Ljava/util/LinkedList$Node;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkLast(Ljava/util/LinkedList$Node;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "linkBefore(Ljava/lang/Object;Ljava/util/LinkedList$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linkLast(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "node(I)Ljava/util/LinkedList$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlink(Ljava/util/LinkedList$Node;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/List;": {"fields": {}, "methods": {"copyOf(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of()Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([Ljava/lang/Object;)Ljava/util/List;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(ILjava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ListIterator;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ListResourceBundle;": {"fields": {"lookup:Ljava/util/Map;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadLookup()V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getContents()[[Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleGetObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleKeySet()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$1;": {"fields": {"$SwitchMap$java$util$Locale$Category:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Locale$Builder;": {"fields": {"localeBuilder:Lsun/util/locale/InternalLocaleBuilder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addUnicodeLocaleAttribute(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearExtensions()Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeUnicodeLocaleAttribute(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExtension(CLjava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLanguage(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLanguageTag(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocale(Ljava/util/Locale;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRegion(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setScript(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUnicodeLocaleKeyword(Ljava/lang/String;Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setVariant(Ljava/lang/String;)Ljava/util/Locale$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$Cache-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Locale$Cache;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Locale$Cache-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createObject(Ljava/util/Locale$LocaleKey;)Ljava/util/Locale;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Locale$Category;": {"fields": {"$VALUES:[Ljava/util/Locale$Category;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DISPLAY:Ljava/util/Locale$Category;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FORMAT:Ljava/util/Locale$Category;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countryKey:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "languageKey:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scriptKey:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "variantKey:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/Locale$Category;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/util/Locale$Category;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$FilteringMode;": {"fields": {"$VALUES:[Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AUTOSELECT_FILTERING:Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTENDED_FILTERING:Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IGNORE_EXTENDED_RANGES:Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAP_EXTENDED_RANGES:Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "REJECT_EXTENDED_RANGES:Ljava/util/Locale$FilteringMode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/Locale$FilteringMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/util/Locale$FilteringMode;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$LanguageRange;": {"fields": {"MAX_WEIGHT:D": {"value": "1.0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MIN_WEIGHT:D": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hash:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "range:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "weight:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSubtagIllFormed(Ljava/lang/String;Z)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapEquivalents(Ljava/util/List;Ljava/util/Map;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/String;Ljava/util/Map;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRange()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWeight()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$LocaleKey-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Locale$LocaleKey;": {"fields": {"base:Lsun/util/locale/BaseLocale;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exts:Lsun/util/locale/LocaleExtensions;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetbase(Ljava/util/Locale$LocaleKey;)Lsun/util/locale/BaseLocale;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetexts(Ljava/util/Locale$LocaleKey;)Lsun/util/locale/LocaleExtensions;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;Ljava/util/Locale$LocaleKey-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale$NoImagePreloadHolder;": {"fields": {"defaultLocale:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Locale-IA;": {"fields": {}, "methods": {}}, "Ljava/util/LongSummaryStatistics;": {"fields": {"count:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "max:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "min:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sum:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(JJJJ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combine(Ljava/util/LongSummaryStatistics;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAverage()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCount()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMax()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMin()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSum()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Locale;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CANADA:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CANADA_FRENCH:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHINA:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CHINESE:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DISPLAY_COUNTRY:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISPLAY_LANGUAGE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISPLAY_SCRIPT:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISPLAY_VARIANT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ENGLISH:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FRANCE:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FRENCH:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GERMAN:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GERMANY:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ITALIAN:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ITALY:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAPAN:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "JAPANESE:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KOREA:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KOREAN:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCALECACHE:Ljava/util/Locale$Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRC:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PRIVATE_USE_EXTENSION:C": {"value": "'x'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ROOT:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIMPLIFIED_CHINESE:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TAIWAN:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRADITIONAL_CHINESE:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UK:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNDETERMINED_LANGUAGE:Ljava/lang/String;": {"value": "\"und\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNICODE_LOCALE_EXTENSION:C": {"value": "'u'", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "US:Ljava/util/Locale;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultDisplayLocale:Ljava/util/Locale;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultFormatLocale:Ljava/util/Locale;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isoCountries:[Ljava/lang/String;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isoLanguages:[Ljava/lang/String;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x7ef811609c30f9ecL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseLocale:Lsun/util/locale/BaseLocale;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCodeValue:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "languageTag:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localeExtensions:Lsun/util/locale/LocaleExtensions;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetbaseLocale(Ljava/util/Locale;)Lsun/util/locale/BaseLocale;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetlocaleExtensions(Ljava/util/Locale;)Lsun/util/locale/LocaleExtensions;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetCompatibilityExtensions(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lsun/util/locale/LocaleExtensions;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;Ljava/util/Locale-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanCache()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "composeList(Ljava/text/MessageFormat;[Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "convertOldISOCodes(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createConstant(Ljava/lang/String;Ljava/lang/String;)Ljava/util/Locale;": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "filter(Ljava/util/List;Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/List;Ljava/util/Collection;Ljava/util/Locale$FilteringMode;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filterTags(Ljava/util/List;Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filterTags(Ljava/util/List;Ljava/util/Collection;Ljava/util/Locale$FilteringMode;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forLanguageTag(Ljava/lang/String;)Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatList([Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableLocales()[Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCompatibilityExtensions(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lsun/util/locale/LocaleExtensions;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefault()Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault(Ljava/util/Locale$Category;)Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getISOCountries()[Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getISOLanguages()[Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Locale;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lsun/util/locale/LocaleExtensions;)Ljava/util/Locale;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;)Ljava/util/Locale;": {"other": [".method", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "initDefault()Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initDefault(Ljava/util/Locale$Category;)Ljava/util/Locale;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isAsciiAlphaNum(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUnM49AreaCode(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUnicodeExtensionKey(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidBcp47Alpha(Ljava/lang/String;II)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidVariantSubtag(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookup(Ljava/util/List;Ljava/util/Collection;)Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupTag(Ljava/util/List;Ljava/util/Collection;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalizeAndValidateLanguage(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizeAndValidateRegion(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizeAndValidateVariant(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "setDefault(Ljava/util/Locale$Category;Ljava/util/Locale;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljava/util/Locale;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseLocale()Lsun/util/locale/BaseLocale;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCountry()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayCountry()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayCountry(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayLanguage()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayLanguage(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayScript()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayScript(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayVariant()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayVariant(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtension(C)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensionKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getISO3Country()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getISO3Language()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLanguage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocaleExtensions()Lsun/util/locale/LocaleExtensions;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getScript()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnicodeLocaleAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnicodeLocaleKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnicodeLocaleType(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVariant()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasExtensions()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stripExtensions()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toLanguageTag()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map$Entry$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map$Entry$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map$Entry$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map$Entry$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map;": {"fields": {}, "methods": {"copyOf(Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entry(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of()Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofEntries([Ljava/util/Map$Entry;)Ljava/util/Map;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Map$Entry;": {"fields": {}, "methods": {"comparingByKey()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingByKey(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingByValue()Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparingByValue(Ljava/util/Comparator;)Ljava/util/Comparator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$comparingByKey$6d558cbf$1(Ljava/util/Comparator;Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingByKey$bbdbfea9$1(Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingByValue$1065357e$1(Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$comparingByValue$827a17d5$1(Ljava/util/Comparator;Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/MissingFormatArgumentException;": {"fields": {"serialVersionUID:J": {"value": "0x124d163L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "s:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormatSpecifier()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/MissingFormatWidthException;": {"fields": {"serialVersionUID:J": {"value": "0xed6dbbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "s:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormatSpecifier()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/NavigableMap;": {"fields": {}, "methods": {"ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/MissingResourceException;": {"fields": {"serialVersionUID:J": {"value": "-0x43ac421a055d7d11L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "className:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/NavigableSet;": {"fields": {}, "methods": {"ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/NoSuchElementException;": {"fields": {"serialVersionUID:J": {"value": "0x5df343d5da693aa8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Objects;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkFromIndexSize(III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkFromToIndex(III)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkIndex(II)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/Comparator;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deepEquals(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hash([Ljava/lang/Object;)I": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode(Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isNull(Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nonNull(Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireNonNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireNonNull(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireNonNull(Ljava/lang/Object;Ljava/util/function/Supplier;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireNonNullElse(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireNonNullElseGet(Ljava/lang/Object;Ljava/util/function/Supplier;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Observable;": {"fields": {"changed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "obs:Ljava/util/Vector;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addObserver(Ljava/util/Observer;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearChanged()V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countObservers()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteObserver(Ljava/util/Observer;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteObservers()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasChanged()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notifyObservers()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "notifyObservers(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setChanged()V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Observer;": {"fields": {}, "methods": {"update(Ljava/util/Observable;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Optional;": {"fields": {"EMPTY:Ljava/util/Optional;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "empty()Ljava/util/Optional;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;)Ljava/util/Optional;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ofNullable(Ljava/lang/Object;)Ljava/util/Optional;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/function/Predicate;)Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/Function;)Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresent(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresentOrElse(Ljava/util/function/Consumer;Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPresent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/util/function/Function;)Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/Supplier;)Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElse(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseGet(Ljava/util/function/Supplier;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow(Ljava/util/function/Supplier;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/OptionalDouble;": {"fields": {"EMPTY:Ljava/util/OptionalDouble;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPresent:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(D)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "empty()Ljava/util/OptionalDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(D)Ljava/util/OptionalDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresent(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresentOrElse(Ljava/util/function/DoubleConsumer;Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPresent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElse(D)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseGet(Ljava/util/function/DoubleSupplier;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow(Ljava/util/function/Supplier;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/OptionalInt;": {"fields": {"EMPTY:Ljava/util/OptionalInt;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPresent:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "empty()Ljava/util/OptionalInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/util/OptionalInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresent(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresentOrElse(Ljava/util/function/IntConsumer;Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPresent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElse(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseGet(Ljava/util/function/IntSupplier;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow(Ljava/util/function/Supplier;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/OptionalLong;": {"fields": {"EMPTY:Ljava/util/OptionalLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPresent:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "empty()Ljava/util/OptionalLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(J)Ljava/util/OptionalLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresent(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ifPresentOrElse(Ljava/util/function/LongConsumer;Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPresent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElse(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseGet(Ljava/util/function/LongSupplier;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orElseThrow(Ljava/util/function/Supplier;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfDouble$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfDouble;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Double;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfInt$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfInt;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfLong$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator$OfLong;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Long;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PrimitiveIterator;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PriorityQueue$Itr;": {"fields": {"cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forgetMeNot:Ljava/util/ArrayDeque;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRetElt:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/PriorityQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/PriorityQueue;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/PriorityQueue;Ljava/util/PriorityQueue$Itr-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PriorityQueue$Itr-IA;": {"fields": {}, "methods": {}}, "Ljava/util/PriorityQueue;": {"fields": {"DEFAULT_INITIAL_CAPACITY:I": {"value": "0xb", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x6b25cf4b04c07d4fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "queue:[Ljava/lang/Object;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/PriorityQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/SortedSet;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "grow(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "heapify()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initElementsFromCollection(Ljava/util/Collection;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initFromCollection(Ljava/util/Collection;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initFromPriorityQueue(Ljava/util/PriorityQueue;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "siftDown(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftDownComparable(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftDownUsingComparator(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUp(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUpComparable(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUpUsingComparator(ILjava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAt(I)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeEq(Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PriorityQueue$PriorityQueueSpliterator;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pq:Ljava/util/PriorityQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/PriorityQueue;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/PriorityQueue$PriorityQueueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Properties$LineReader;": {"fields": {"inByteBuf:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inCharBuf:[C": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inLimit:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inOff:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inStream:Ljava/io/InputStream;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lineBuf:[C": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reader:Ljava/io/Reader;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Properties;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Properties;Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Properties;Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLine()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/Properties;": {"fields": {"hexDigit:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x3912d07a70363e98L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "defaults:Ljava/util/Properties;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Properties;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enumerate(Ljava/util/Hashtable;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enumerateStringProperties(Ljava/util/Hashtable;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "load0(Ljava/util/Properties$LineReader;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadConvert([CII[C)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "saveConvert(Ljava/lang/String;ZZ)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "store0(Ljava/io/BufferedWriter;Ljava/lang/String;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toHex(I)C": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeComments(Ljava/io/BufferedWriter;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/io/PrintStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list(Ljava/io/PrintWriter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/io/InputStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/io/Reader;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadFromXML(Ljava/io/InputStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "propertyNames()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "save(Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "store(Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "store(Ljava/io/Writer;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storeToXML(Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "storeToXML(Ljava/io/OutputStream;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stringPropertyNames()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PropertyPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/PropertyResourceBundle;": {"fields": {"lookup:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/Reader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleGetObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleKeySet()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Queue;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Random$RandomDoublesSpliterator;": {"fields": {"bound:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/Random;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Random;JJDD)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Random$RandomDoublesSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Random$RandomIntsSpliterator;": {"fields": {"bound:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/Random;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Random;JJII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Random$RandomIntsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Random$RandomLongsSpliterator;": {"fields": {"bound:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/Random;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Random;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Random$RandomLongsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Random;": {"fields": {"BadBound:Ljava/lang/String;": {"value": "\"bound must be positive\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BadRange:Ljava/lang/String;": {"value": "\"bound must be greater than origin\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BadSize:Ljava/lang/String;": {"value": "\"size must be non-negative\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOUBLE_UNIT:D": {"value": "1.1102230246251565E-16", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addend:J": {"value": "0xbL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mask:J": {"value": "0xffffffffffffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "multiplier:J": {"value": "0x5deece66dL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seedOffset:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seedUniquifier:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x363296344bf00a53L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "unsafe:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "haveNextNextGaussian:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNextGaussian:D": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seed:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialScramble(J)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resetSeed(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seedUniquifier()J": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "doubles()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(DD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(JDD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalNextDouble(DD)D": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextInt(II)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextLong(JJ)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ints()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(II)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(J)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(JII)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(J)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBytes([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextGaussian()D": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSeed(J)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/RandomAccess;": {"fields": {}, "methods": {}}, "Ljava/util/RegularEnumSet$EnumSetIterator;": {"fields": {"lastReturned:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/RegularEnumSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unseen:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/RegularEnumSet;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Enum;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/RegularEnumSet;": {"fields": {"serialVersionUID:J": {"value": "0x2f586fc77eb0d07eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elements:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetelements(Ljava/util/RegularEnumSet;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputelements(Ljava/util/RegularEnumSet;J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;[Ljava/lang/Enum;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Enum;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addRange(Ljava/lang/Enum;Ljava/lang/Enum;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complement()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleGetObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$BundleReference;": {"fields": {"cacheKey:Ljava/util/ResourceBundle$CacheKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ResourceBundle;Ljava/lang/ref/ReferenceQueue;Ljava/util/ResourceBundle$CacheKey;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCacheKey()Ljava/util/ResourceBundle$CacheKey;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/ResourceBundle$CacheKey;": {"fields": {"cause:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expirationTime:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCodeCache:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadTime:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loaderRef:Ljava/util/ResourceBundle$LoaderReference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetexpirationTime(Ljava/util/ResourceBundle$CacheKey;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetloadTime(Ljava/util/ResourceBundle$CacheKey;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputexpirationTime(Ljava/util/ResourceBundle$CacheKey;J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputloadTime(Ljava/util/ResourceBundle$CacheKey;J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetCause(Ljava/util/ResourceBundle$CacheKey;)Ljava/lang/Throwable;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$msetCause(Ljava/util/ResourceBundle$CacheKey;Ljava/lang/Throwable;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/ClassLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "calculateHashCode()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCause()Ljava/lang/Throwable;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCause(Ljava/lang/Throwable;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLoader()Ljava/lang/ClassLoader;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocale()Ljava/util/Locale;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormat(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setLocale(Ljava/util/Locale;)Ljava/util/ResourceBundle$CacheKey;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setName(Ljava/lang/String;)Ljava/util/ResourceBundle$CacheKey;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$CacheKeyReference;": {"fields": {}, "methods": {"getCacheKey()Ljava/util/ResourceBundle$CacheKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/ResourceBundle$Control$1;": {"fields": {"this$0:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$classLoader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$reloadFlag:Z": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$resourceName:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ResourceBundle$Control;ZLjava/lang/ClassLoader;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$Control$CandidateListCache-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ResourceBundle$Control$CandidateListCache;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/ResourceBundle$Control$CandidateListCache-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefaultList(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createObject(Lsun/util/locale/BaseLocale;)Ljava/util/List;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/ResourceBundle$Control;": {"fields": {"CANDIDATES_CACHE:Ljava/util/ResourceBundle$Control$CandidateListCache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FORMAT_CLASS:Ljava/util/List;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FORMAT_DEFAULT:Ljava/util/List;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FORMAT_PROPERTIES:Ljava/util/List;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INSTANCE:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TTL_DONT_CACHE:J": {"value": "-0x1L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TTL_NO_EXPIRATION_CONTROL:J": {"value": "-0x2L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"-$$Nest$sfgetINSTANCE()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getControl(Ljava/util/List;)Ljava/util/ResourceBundle$Control;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNoFallbackControl(Ljava/util/List;)Ljava/util/ResourceBundle$Control;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toResourceName0(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCandidateLocales(Ljava/lang/String;Ljava/util/Locale;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFallbackLocale(Ljava/lang/String;Ljava/util/Locale;)Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormats(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive(Ljava/lang/String;Ljava/util/Locale;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "needsReload(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/util/ResourceBundle;J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newBundle(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/String;Ljava/lang/ClassLoader;Z)Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toBundleName(Ljava/lang/String;Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toResourceName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$LoaderReference;": {"fields": {"cacheKey:Ljava/util/ResourceBundle$CacheKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ClassLoader;Ljava/lang/ref/ReferenceQueue;Ljava/util/ResourceBundle$CacheKey;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCacheKey()Ljava/util/ResourceBundle$CacheKey;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/ResourceBundle$NoFallbackControl;": {"fields": {"CLASS_ONLY_NO_FALLBACK:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NO_FALLBACK:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PROPERTIES_ONLY_NO_FALLBACK:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetCLASS_ONLY_NO_FALLBACK()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetNO_FALLBACK()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetPROPERTIES_ONLY_NO_FALLBACK()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFallbackLocale(Ljava/lang/String;Ljava/util/Locale;)Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$RBClassLoader$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/ResourceBundle$RBClassLoader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ResourceBundle$RBClassLoader-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ResourceBundle$RBClassLoader;": {"fields": {"INSTANCE:Ljava/util/ResourceBundle$RBClassLoader;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetINSTANCE()Ljava/util/ResourceBundle$RBClassLoader;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/ResourceBundle$RBClassLoader-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceAsStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle$SingleFormatControl;": {"fields": {"CLASS_ONLY:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PROPERTIES_ONLY:Ljava/util/ResourceBundle$Control;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formats:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetCLASS_ONLY()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetPROPERTIES_ONLY()Ljava/util/ResourceBundle$Control;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFormats(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ResourceBundle;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INITIAL_CACHE_SIZE:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NONEXISTENT_BUNDLE:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cacheList:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "referenceQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cacheKey:Ljava/util/ResourceBundle$CacheKey;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expired:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"-$$Nest$sfgetreferenceQueue()Ljava/lang/ref/ReferenceQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkList(Ljava/util/List;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearCache()V": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearCache(Ljava/lang/ClassLoader;)V": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findBundle(Ljava/util/ResourceBundle$CacheKey;Ljava/util/List;Ljava/util/List;ILjava/util/ResourceBundle$Control;Ljava/util/ResourceBundle;)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findBundleInCache(Ljava/util/ResourceBundle$CacheKey;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBundle(Ljava/lang/String;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundle(Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundle(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/ClassLoader;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundle(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/ClassLoader;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundle(Ljava/lang/String;Ljava/util/Locale;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundle(Ljava/lang/String;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBundleImpl(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/ClassLoader;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefaultControl(Ljava/lang/String;)Ljava/util/ResourceBundle$Control;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLoader(Ljava/lang/Class;)Ljava/lang/ClassLoader;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasValidParentChain(Ljava/util/ResourceBundle;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidBundle(Ljava/util/ResourceBundle;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadBundle(Ljava/util/ResourceBundle$CacheKey;Ljava/util/List;Ljava/util/ResourceBundle$Control;Z)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putBundleInCache(Ljava/util/ResourceBundle$CacheKey;Ljava/util/ResourceBundle;Ljava/util/ResourceBundle$Control;)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setExpirationTime(Ljava/util/ResourceBundle$CacheKey;Ljava/util/ResourceBundle$Control;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwMissingResourceException(Ljava/lang/String;Ljava/util/Locale;Ljava/lang/Throwable;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "containsKey(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBaseBundleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeys()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocale()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStringArray(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleGetObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleKeySet()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParent(Ljava/util/ResourceBundle;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ServiceLoader$1;": {"fields": {"knownProviders:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/ServiceLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ServiceLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ServiceConfigurationError;": {"fields": {"serialVersionUID:J": {"value": "0x436c61726121L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Scanner;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BOOLEAN_PATTERN:Ljava/lang/String;": {"value": "\"true|false\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BUFFER_SIZE:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FIND_ANY_PATTERN:Ljava/util/regex/Pattern;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LINE_PATTERN:Ljava/lang/String;": {"value": "\".*(\\r\\n|[\\n\\r\\u2028\\u2029\\u0085])|.+$\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LINE_SEPARATOR_PATTERN:Ljava/lang/String;": {"value": "\"\\r\\n|[\\n\\r\\u2028\\u2029\\u0085]\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NON_ASCII_DIGIT:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WHITESPACE_PATTERN:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "boolPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linePattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "separatorPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIMPLE_GROUP_INDEX:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:Ljava/nio/CharBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decimalPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decimalSeparator:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultRadix:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delimPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digits:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "floatPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "groupSeparator:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNextPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNextPosition:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNextResult:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "infinityString:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "integerPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastException:Ljava/io/IOException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchValid:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matcher:Ljava/util/regex/Matcher;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nanString:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needInput:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "negativePrefix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "negativeSuffix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "non0Digit:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "patternCache:Lsun/misc/LRUCache;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "position:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "positivePrefix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "positiveSuffix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "radix:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "savedScannerPosition:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipped:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "source:Ljava/lang/Readable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceClosed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "typeCache:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/CharsetDecoder;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Readable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Readable;Ljava/util/regex/Pattern;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/channels/ReadableByteChannel;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/channels/ReadableByteChannel;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/file/Path;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/file/Path;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/nio/file/Path;Ljava/nio/charset/Charset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "boolPattern()Ljava/util/regex/Pattern;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buildFloatAndDecimalPattern()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buildIntegerPatternString()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cacheResult()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cacheResult(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearCaches()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decimalPattern()Ljava/util/regex/Pattern;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findPatternInBuffer(Ljava/util/regex/Pattern;I)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "floatPattern()Ljava/util/regex/Pattern;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCachedResult()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCompleteTokenInBuffer(Ljava/util/regex/Pattern;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasTokenInBuffer()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "integerPattern()Ljava/util/regex/Pattern;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linePattern()Ljava/util/regex/Pattern;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeReadable(Ljava/io/InputStream;Ljava/nio/charset/Charset;)Ljava/lang/Readable;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeReadable(Ljava/nio/channels/ReadableByteChannel;)Ljava/lang/Readable;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeReadable(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/charset/CharsetDecoder;)Ljava/lang/Readable;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeSpace()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchPatternInBuffer(Ljava/util/regex/Pattern;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processFloatToken(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processIntegerToken(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readInput()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "revertState()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "revertState(Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "saveState()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "separatorPattern()Ljava/util/regex/Pattern;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setRadix(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwFor()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharset(Ljava/lang/String;)Ljava/nio/charset/Charset;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toDecoder(Ljava/lang/String;)Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "translateSavedIndexes(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useTypeCache()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delimiter()Ljava/util/regex/Pattern;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findInLine(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findInLine(Ljava/util/regex/Pattern;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findWithinHorizon(Ljava/lang/String;I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findWithinHorizon(Ljava/util/regex/Pattern;I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext(Ljava/util/regex/Pattern;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextBigDecimal()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextBigInteger()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextBigInteger(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextByte()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextByte(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextDouble()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextFloat()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextInt()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextInt(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextLine()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextLong()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextLong(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextShort()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNextShort(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ioException()Ljava/io/IOException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "locale()Ljava/util/Locale;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match()Ljava/util/regex/MatchResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(Ljava/util/regex/Pattern;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBigDecimal()Ljava/math/BigDecimal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBigInteger(I)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextByte()B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextByte(I)B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLine()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong(I)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextShort()S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextShort(I)S": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "radix()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(Ljava/lang/String;)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(Ljava/util/regex/Pattern;)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useDelimiter(Ljava/lang/String;)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useDelimiter(Ljava/util/regex/Pattern;)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useLocale(Ljava/util/Locale;)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useRadix(I)Ljava/util/Scanner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Scanner$1;": {"fields": {"this$0:Ljava/util/Scanner;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Scanner;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/String;)Ljava/util/regex/Pattern;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/util/regex/Pattern;Ljava/lang/String;)Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/ServiceLoader$LazyIterator;": {"fields": {"configs:Ljava/util/Enumeration;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextName:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pending:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "service:Ljava/lang/Class;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/ServiceLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/ServiceLoader;Ljava/lang/Class;Ljava/lang/ClassLoader;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ServiceLoader;Ljava/lang/Class;Ljava/lang/ClassLoader;Ljava/util/ServiceLoader$LazyIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNextService()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextService()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/ServiceLoader$LazyIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/ServiceLoader;": {"fields": {"PREFIX:Ljava/lang/String;": {"value": "\"META-INF/services/\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupIterator:Ljava/util/ServiceLoader$LazyIterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "providers:Ljava/util/LinkedHashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "service:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetlookupIterator(Ljava/util/ServiceLoader;)Ljava/util/ServiceLoader$LazyIterator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetproviders(Ljava/util/ServiceLoader;)Ljava/util/LinkedHashMap;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mparse(Ljava/util/ServiceLoader;Ljava/lang/Class;Ljava/net/URL;)Ljava/util/Iterator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smfail(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/ClassLoader;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fail(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fail(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fail(Ljava/lang/Class;Ljava/net/URL;ILjava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "load(Ljava/lang/Class;)Ljava/util/ServiceLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "load(Ljava/lang/Class;Ljava/lang/ClassLoader;)Ljava/util/ServiceLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadFromSystemProperty(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadInstalled(Ljava/lang/Class;)Ljava/util/ServiceLoader;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parse(Ljava/lang/Class;Ljava/net/URL;)Ljava/util/Iterator;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseLine(Ljava/lang/Class;Ljava/net/URL;Ljava/io/BufferedReader;ILjava/util/List;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reload()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SimpleTimeZone$Cache;": {"fields": {"end:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "start:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "year:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Set;": {"fields": {}, "methods": {"copyOf(Ljava/util/Collection;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of()Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SimpleTimeZone;": {"fields": {"DOM_MODE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOW_GE_DOM_MODE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOW_IN_MONTH_MODE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOW_LE_DOM_MODE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_RULE_NUM:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STANDARD_TIME:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTC_TIME:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WALL_TIME:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "currentSerialVersion:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gcal:Lsun/util/calendar/Gregorian;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "millisPerDay:I": {"value": "0x5265c00", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "millisPerHour:I": {"value": "0x36ee80", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x598a29f2ea10a5aL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "staticLeapMonthLength:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "staticMonthLength:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cache:Ljava/util/SimpleTimeZone$Cache;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dstSavings:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endDay:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endDayOfWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endMode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endMonth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endTime:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endTimeMode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "monthLength:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rawOffset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionOnStream:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startDay:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startDayOfWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startMode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startMonth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startTime:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startTimeMode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startYear:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useDaylight:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/lang/String;IIIIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/lang/String;IIIIIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/lang/String;IIIIIIIIIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decodeEndRule()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodeRules()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodeStartRule()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEnd(Lsun/util/calendar/BaseCalendar;Lsun/util/calendar/BaseCalendar$Date;I)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOffset(Lsun/util/calendar/BaseCalendar;Lsun/util/calendar/BaseCalendar$Date;IJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getStart(Lsun/util/calendar/BaseCalendar;Lsun/util/calendar/BaseCalendar$Date;I)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTransition(Lsun/util/calendar/BaseCalendar;Lsun/util/calendar/BaseCalendar$Date;IIIIII)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invalidateCache()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeRulesCompatible()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "packRules()[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "packTimes()[I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "unpackRules([B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unpackTimes([I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDSTSavings()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(IIIIII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsets(J[I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRawOffset()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasSameRules(Ljava/util/TimeZone;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inDaylightTime(Ljava/util/Date;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "observesDaylightTime()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDSTSavings(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEndRule(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEndRule(IIII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEndRule(IIIIZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawOffset(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStartRule(III)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStartRule(IIII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStartRule(IIIIZ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStartYear(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useDaylightTime()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SortedMap;": {"fields": {}, "methods": {"comparator()Ljava/util/Comparator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SortedSet$1;": {"fields": {"this$0:Ljava/util/SortedSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SortedSet;Ljava/util/Collection;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SortedSet;": {"fields": {}, "methods": {"comparator()Ljava/util/Comparator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterator$OfDouble;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterator$OfInt;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterator$OfLong;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterator$OfPrimitive;": {"fields": {}, "methods": {"forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterator;": {"fields": {"CONCURRENT:I": {"value": "0x1000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DISTINCT:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMMUTABLE:I": {"value": "0x400", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NONNULL:I": {"value": "0x100", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ORDERED:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIZED:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SORTED:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SUBSIZED:I": {"value": "0x4000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"characteristics()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExactSizeIfKnown()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasCharacteristics(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$1Adapter;": {"fields": {"nextElement:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueReady:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$2Adapter;": {"fields": {"nextElement:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$spliterator:Ljava/util/Spliterator$OfInt;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueReady:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfInt;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$3Adapter;": {"fields": {"nextElement:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$spliterator:Ljava/util/Spliterator$OfLong;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueReady:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfLong;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$4Adapter;": {"fields": {"nextElement:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$spliterator:Ljava/util/Spliterator$OfDouble;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueReady:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfDouble;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractDoubleSpliterator$HoldingDoubleConsumer;": {"fields": {"value:D": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractDoubleSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JI)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractIntSpliterator$HoldingIntConsumer;": {"fields": {"value:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractIntSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JI)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractLongSpliterator$HoldingLongConsumer;": {"fields": {"value:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractLongSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JI)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractSpliterator$HoldingConsumer;": {"fields": {"value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$AbstractSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JI)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$ArraySpliterator;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Object;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([Ljava/lang/Object;III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$DoubleArraySpliterator;": {"fields": {"array:[D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([DI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([DIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$DoubleIteratorSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "it:Ljava/util/PrimitiveIterator$OfDouble;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/PrimitiveIterator$OfDouble;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/PrimitiveIterator$OfDouble;JI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$EmptySpliterator$OfDouble;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$EmptySpliterator$OfInt;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$EmptySpliterator$OfLong;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$EmptySpliterator$OfRef;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$EmptySpliterator;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$IntArraySpliterator;": {"fields": {"array:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([IIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$IntIteratorSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "it:Ljava/util/PrimitiveIterator$OfInt;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/PrimitiveIterator$OfInt;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/PrimitiveIterator$OfInt;JI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$IteratorSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collection:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "it:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Iterator;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Iterator;JI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$LongArraySpliterator;": {"fields": {"array:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([JI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([JIII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators$LongIteratorSpliterator;": {"fields": {"BATCH_UNIT:I": {"value": "0x400", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "it:Ljava/util/PrimitiveIterator$OfLong;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/PrimitiveIterator$OfLong;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/PrimitiveIterator$OfLong;JI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Spliterators;": {"fields": {"EMPTY_DOUBLE_SPLITERATOR:Ljava/util/Spliterator$OfDouble;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_INT_SPLITERATOR:Ljava/util/Spliterator$OfInt;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_LONG_SPLITERATOR:Ljava/util/Spliterator$OfLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_SPLITERATOR:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkFromToBounds(III)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "emptyDoubleSpliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyIntSpliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptyLongSpliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "emptySpliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator(Ljava/util/Spliterator;)Ljava/util/Iterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator(Ljava/util/Spliterator$OfDouble;)Ljava/util/PrimitiveIterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator(Ljava/util/Spliterator$OfInt;)Ljava/util/PrimitiveIterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator(Ljava/util/Spliterator$OfLong;)Ljava/util/PrimitiveIterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator(Ljava/util/PrimitiveIterator$OfDouble;JI)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([DI)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([DIII)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator(Ljava/util/PrimitiveIterator$OfInt;JI)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([II)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([IIII)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator(Ljava/util/PrimitiveIterator$OfLong;JI)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([JI)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([JIII)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator(Ljava/util/Collection;I)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator(Ljava/util/Iterator;JI)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([Ljava/lang/Object;I)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator([Ljava/lang/Object;III)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliteratorUnknownSize(Ljava/util/PrimitiveIterator$OfDouble;I)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliteratorUnknownSize(Ljava/util/PrimitiveIterator$OfInt;I)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliteratorUnknownSize(Ljava/util/PrimitiveIterator$OfLong;I)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliteratorUnknownSize(Ljava/util/Iterator;I)Ljava/util/Spliterator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SplittableRandom$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/SplittableRandom$RandomDoublesSpliterator;": {"fields": {"bound:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/SplittableRandom;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SplittableRandom;JJDD)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/SplittableRandom$RandomDoublesSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/SplittableRandom$RandomIntsSpliterator;": {"fields": {"bound:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/SplittableRandom;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SplittableRandom;JJII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/SplittableRandom$RandomIntsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/SplittableRandom$RandomLongsSpliterator;": {"fields": {"bound:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rng:Ljava/util/SplittableRandom;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/SplittableRandom;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/SplittableRandom$RandomLongsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/SplittableRandom;": {"fields": {"BAD_BOUND:Ljava/lang/String;": {"value": "\"bound must be positive\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BAD_RANGE:Ljava/lang/String;": {"value": "\"bound must be greater than origin\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BAD_SIZE:Ljava/lang/String;": {"value": "\"size must be non-negative\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOUBLE_UNIT:D": {"value": "1.1102230246251565E-16", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GOLDEN_GAMMA:J": {"value": "-0x61c8864680b583ebL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultGen:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "gamma:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seed:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(JJ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mix32(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mix64(J)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mixGamma(J)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextSeed()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubles()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(DD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(JDD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalNextDouble(DD)D": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextInt(II)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextLong(JJ)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ints()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(II)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(J)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(JII)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(J)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBytes([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble(D)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble(DD)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong(JJ)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "split()Ljava/util/SplittableRandom;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Stack;": {"fields": {"serialVersionUID:J": {"value": "0x10fe2ac2bb09861dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "empty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "search(Ljava/lang/Object;)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/StringJoiner;": {"fields": {"delimiter:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "emptyValue:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefix:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "suffix:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/StringBuilder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prepareBuilder()Ljava/lang/StringBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/CharSequence;)Ljava/util/StringJoiner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/util/StringJoiner;)Ljava/util/StringJoiner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEmptyValue(Ljava/lang/CharSequence;)Ljava/util/StringJoiner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/StringTokenizer;": {"fields": {"currentPosition:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delimiterCodePoints:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delimiters:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delimsChanged:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasSurrogates:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxDelimCodePoint:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maxPosition:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newPosition:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "retDelims:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "str:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDelimiter(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scanToken(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setMaxDelimCodePoint()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipDelimiters(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "countTokens()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasMoreTokens()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextToken()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextToken(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TaskQueue;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queue:[Ljava/util/TimerTask;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixDown(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixUp(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/util/TimerTask;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(I)Ljava/util/TimerTask;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMin()Ljava/util/TimerTask;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "heapify()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "quickRemove(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeMin()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rescheduleMin(J)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/TimSort;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INITIAL_TMP_STORAGE_LENGTH:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_GALLOP:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_MERGE:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "a:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "c:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minGallop:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runBase:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runLen:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stackSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmp:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpBase:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;Ljava/util/Comparator;[Ljava/lang/Object;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "binarySort([Ljava/lang/Object;IIILjava/util/Comparator;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "countRunAndMakeAscending([Ljava/lang/Object;IILjava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureCapacity(I)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gallopLeft(Ljava/lang/Object;[Ljava/lang/Object;IIILjava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gallopRight(Ljava/lang/Object;[Ljava/lang/Object;IIILjava/util/Comparator;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeAt(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeCollapse()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeForceCollapse()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeHi(IIII)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeLo(IIII)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minRunLength(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pushRun(II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverseRange([Ljava/lang/Object;II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sort([Ljava/lang/Object;IILjava/util/Comparator;[Ljava/lang/Object;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TimeZone$NoImagePreloadHolder;": {"fields": {"CUSTOM_ZONE_ID_PATTERN:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/TimeZone;": {"fields": {"GMT:Ljava/util/TimeZone;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LONG:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_TIMEZONE:Ljava/util/TimeZone;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHORT:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UTC:Ljava/util/TimeZone;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultTimeZone:Ljava/util/TimeZone;": {"value": "null", "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x31b3e9f57744aca1L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ID:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendNumber(Ljava/lang/StringBuilder;II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createGmtOffsetString(ZZI)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAvailableIDs()[Ljava/lang/String;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAvailableIDs(I)[Ljava/lang/String;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCustomTimeZone(Ljava/lang/String;)Ljava/util/TimeZone;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefault()Ljava/util/TimeZone;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultRef()Ljava/util/TimeZone;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemGMTOffsetID()Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemTimeZoneID(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTimeZone(Ljava/lang/String;)Ljava/util/TimeZone;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeZone(Ljava/time/ZoneId;)Ljava/util/TimeZone;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljava/util/TimeZone;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDSTSavings()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(ZI)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDisplayName(ZILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(IIIIII)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffset(J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOffsets(J[I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRawOffset()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasSameRules(Ljava/util/TimeZone;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inDaylightTime(Ljava/util/Date;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "observesDaylightTime()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setID(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawOffset(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toZoneId()Ljava/time/ZoneId;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useDaylightTime()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Timer$1;": {"fields": {"this$0:Ljava/util/Timer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Timer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Timer;": {"fields": {"nextSerialNumber:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:Ljava/util/TaskQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/util/TimerThread;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadReaper:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetqueue(Ljava/util/Timer;)Ljava/util/TaskQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetthread(Ljava/util/Timer;)Ljava/util/TimerThread;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sched(Ljava/util/TimerTask;JJ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialNumber()I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "purge()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/TimerTask;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/TimerTask;JJ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/TimerTask;Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/TimerTask;Ljava/util/Date;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleAtFixedRate(Ljava/util/TimerTask;JJ)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleAtFixedRate(Ljava/util/TimerTask;Ljava/util/Date;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TimerTask;": {"fields": {"CANCELLED:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EXECUTED:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SCHEDULED:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "VIRGIN:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextExecutionTime:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "period:J": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduledExecutionTime()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TimerThread;": {"fields": {"newTasksMayBeScheduled:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:Ljava/util/TaskQueue;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TaskQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mainLoop()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TooManyListenersException;": {"fields": {"serialVersionUID:J": {"value": "0x466cbeb059da0357L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$AscendingSubMap$AscendingEntrySetView;": {"fields": {"this$0:Ljava/util/TreeMap$AscendingSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$AscendingSubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$AscendingSubMap;": {"fields": {"serialVersionUID:J": {"value": "0xcab946d1f0fab1cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySpliterator()Ljava/util/Spliterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subCeiling(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subFloor(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHigher(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHighest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLower(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLowest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$DescendingKeyIterator;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$DescendingSubMap$DescendingEntrySetView;": {"fields": {"this$0:Ljava/util/TreeMap$DescendingSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$DescendingSubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$DescendingKeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/TreeMap$DescendingKeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$DescendingSubMap;": {"fields": {"serialVersionUID:J": {"value": "0xcab946d1f0f9d0cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "reverseComparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySpliterator()Ljava/util/Spliterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subCeiling(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subFloor(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHigher(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHighest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLower(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLowest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$EntryIterator;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$EntrySet;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$EntrySpliterator;": {"fields": {}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$getComparator$d5a01062$1(Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/TreeMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$EntrySpliterator$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$KeyIterator;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$KeySet;": {"fields": {"m:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/NavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$KeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/TreeMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$NavigableSubMap$DescendingSubMapEntryIterator;": {"fields": {"this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$NavigableSubMap$DescendingSubMapKeyIterator;": {"fields": {"this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$NavigableSubMap$EntrySetView;": {"fields": {"size:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sizeModCount:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$NavigableSubMap$SubMapEntryIterator;": {"fields": {"this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$NavigableSubMap$SubMapIterator;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fenceKey:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturned:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeAscending()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeDescending()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$NavigableSubMap$SubMapKeyIterator;": {"fields": {"this$0:Ljava/util/TreeMap$NavigableSubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$NavigableSubMap;": {"fields": {"serialVersionUID:J": {"value": "0x26617d4eacdd5933L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "descendingMapView:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySetView:Ljava/util/TreeMap$NavigableSubMap$EntrySetView;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromStart:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hi:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hiInclusive:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lo:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loInclusive:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "navigableKeySetView:Ljava/util/TreeMap$KeySet;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toEnd:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absCeiling(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absFloor(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absHighFence()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absHigher(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absHighest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absLowFence()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absLower(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absLowest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeyIterator()Ljava/util/Iterator;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inClosedRange(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inRange(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inRange(Ljava/lang/Object;Z)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyIterator()Ljava/util/Iterator;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySpliterator()Ljava/util/Spliterator;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subCeiling(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subFloor(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHigher(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subHighest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLower(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subLowest()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tooHigh(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tooLow(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$PrivateEntryIterator;": {"fields": {"expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturned:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$SubMap;": {"fields": {"serialVersionUID:J": {"value": "-0x5a7e7cbc5dec3d81L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "fromKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromStart:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toEnd:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$TreeMapEntry;": {"fields": {"color:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "left:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "right:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$TreeMapSpliterator;": {"fields": {"current:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "side:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tree:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEstimate()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$ValueIterator;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap$ValueSpliterator;": {"fields": {}, "methods": {"(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;Ljava/util/TreeMap$TreeMapEntry;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/TreeMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/TreeMap$Values;": {"fields": {"this$0:Ljava/util/TreeMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/TreeMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeMap;": {"fields": {"BLACK:Z": {"value": "true", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RED:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNBOUNDED:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0xcc1f63e2d256ae6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingMap:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet:Ljava/util/TreeMap$EntrySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "navigableKeySet:Ljava/util/TreeMap$KeySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root:Ljava/util/TreeMap$TreeMapEntry;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetcomparator(Ljava/util/TreeMap;)Ljava/util/Comparator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetmodCount(Ljava/util/TreeMap;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetroot(Ljava/util/TreeMap;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetsize(Ljava/util/TreeMap;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mdeleteEntry(Ljava/util/TreeMap;Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetUNBOUNDED()Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/SortedMap;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "buildFromSorted(IIIILjava/util/Iterator;Ljava/io/ObjectInputStream;Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buildFromSorted(ILjava/util/Iterator;Ljava/io/ObjectInputStream;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "colorOf(Ljava/util/TreeMap$TreeMapEntry;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "computeRedLevel(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deleteEntry(Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exportEntry(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/Map$Entry;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixAfterDeletion(Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fixAfterInsertion(Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key(Ljava/util/TreeMap$TreeMapEntry;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyOrNull(Ljava/util/TreeMap$TreeMapEntry;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySpliteratorFor(Ljava/util/NavigableMap;)Ljava/util/Spliterator;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leftOf(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parentOf(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "predecessor(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "rightOf(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateLeft(Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateRight(Ljava/util/TreeMap$TreeMapEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setColor(Ljava/util/TreeMap$TreeMapEntry;Z)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "successor(Ljava/util/TreeMap$TreeMapEntry;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valEquals(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "addAllForTreeSet(Ljava/util/SortedSet;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySpliterator()Ljava/util/Spliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCeilingEntry(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntry(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryUsingComparator(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFirstEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFloorEntry(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getHigherEntry(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLastEntry()Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLowerEntry(Ljava/lang/Object;)Ljava/util/TreeMap$TreeMapEntry;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keyIterator()Ljava/util/Iterator;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySpliterator()Ljava/util/Spliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readTreeSet(ILjava/io/ObjectInputStream;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/TreeSet;": {"fields": {"PRESENT:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2267af6c6a1278a5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "m:Ljava/util/NavigableMap;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/NavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/SortedSet;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Tripwire;": {"fields": {"ENABLED:Z": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TRIPWIRE_PROPERTY:Ljava/lang/String;": {"value": "\"org.openjdk.java.util.stream.tripwire\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$static$0()Ljava/lang/Boolean;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trip(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/Tripwire$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/UUID$Holder;": {"fields": {"numberGenerator:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/UUID;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x4366fc0867927ad1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "leastSigBits:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "mostSigBits:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digits(JI)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromString(Ljava/lang/String;)Ljava/util/UUID;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nameUUIDFromBytes([B)Ljava/util/UUID;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "randomUUID()Ljava/util/UUID;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clockSequence()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/util/UUID;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLeastSignificantBits()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMostSignificantBits()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "node()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "timestamp()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "variant()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "version()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/UnknownFormatFlagsException;": {"fields": {"serialVersionUID:J": {"value": "0x127920aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "flags:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFlags()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/UnknownFormatConversionException;": {"fields": {"serialVersionUID:J": {"value": "0x122d6c2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "s:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConversion()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Vector$1;": {"fields": {"count:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/Vector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Vector;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Vector$Itr-IA;": {"fields": {}, "methods": {}}, "Ljava/util/Vector$Itr;": {"fields": {"cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "limit:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/Vector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Vector;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Vector;Ljava/util/Vector$Itr-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkForComodification()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Vector$ListItr;": {"fields": {"this$0:Ljava/util/Vector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Vector;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Vector$VectorSpliterator;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "list:Ljava/util/Vector;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Vector;[Ljava/lang/Object;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/Vector;": {"fields": {"MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x266882a47fc450ffL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "capacityIncrement:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elementCount:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elementData:[Ljava/lang/Object;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacityHelper(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hugeCapacity(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addElement(Ljava/lang/Object;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "capacity()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyInto([Ljava/lang/Object;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elementAt(I)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elementData(I)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureCapacity(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstElement()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "insertElementAt(Ljava/lang/Object;I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastElement()Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;I)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAllElements()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeElement(Ljava/lang/Object;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeElementAt(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setElementAt(Ljava/lang/Object;I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSize(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trimToSize()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$Entry;": {"fields": {"hash:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/WeakHashMap$Entry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;ILjava/util/WeakHashMap$Entry;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$EntryIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$EntryIterator;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$EntryIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/WeakHashMap$EntrySet;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$EntrySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deepCopy()Ljava/util/List;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$EntrySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$EntrySpliterator;": {"fields": {}, "methods": {"(Ljava/util/WeakHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/WeakHashMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/WeakHashMap$HashIterator;": {"fields": {"currentKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entry:Ljava/util/WeakHashMap$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastReturned:Ljava/util/WeakHashMap$Entry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextEntry()Ljava/util/WeakHashMap$Entry;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$KeyIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$KeyIterator;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$KeyIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$KeySet-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$KeySet;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$KeySet-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$KeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/WeakHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/WeakHashMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/WeakHashMap$ValueIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$ValueSpliterator;": {"fields": {}, "methods": {"(Ljava/util/WeakHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/WeakHashMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/WeakHashMap$ValueIterator;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$ValueIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$Values-IA;": {"fields": {}, "methods": {}}, "Ljava/util/WeakHashMap$Values;": {"fields": {"this$0:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/WeakHashMap;Ljava/util/WeakHashMap$Values-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/WeakHashMap$WeakHashMapSpliterator;": {"fields": {"current:Ljava/util/WeakHashMap$Entry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expectedModCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/WeakHashMap;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFence()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/WeakHashMap;": {"fields": {"DEFAULT_INITIAL_CAPACITY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_LOAD_FACTOR:F": {"value": "0.75f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_CAPACITY:I": {"value": "0x40000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NULL_KEY:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadFactor:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "modCount:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/util/WeakHashMap$Entry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsNullValue()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eq(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleEntries()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTable()[Ljava/util/WeakHashMap$Entry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexFor(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTable(I)[Ljava/util/WeakHashMap$Entry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transfer([Ljava/util/WeakHashMap$Entry;[Ljava/util/WeakHashMap$Entry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmaskNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntry(Ljava/lang/Object;)Ljava/util/WeakHashMap$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash(Ljava/lang/Object;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeMapping(Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resize(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/XMLUtils$EH-IA;": {"fields": {}, "methods": {}}, "Ljava/util/XMLUtils$EH;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/XMLUtils$EH-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "error(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fatalError(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "warning(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/XMLUtils$Resolver-IA;": {"fields": {}, "methods": {}}, "Ljava/util/XMLUtils$Resolver;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/XMLUtils$Resolver-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolveEntity(Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/XMLUtils;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTERNAL_XML_VERSION:Ljava/lang/String;": {"value": "\"1.0\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPS_DTD:Ljava/lang/String;": {"value": "\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPS_DTD_URI:Ljava/lang/String;": {"value": "\"http://java.sun.com/dtd/properties.dtd\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emitDocument(Lorg/w3c/dom/Document;Ljava/io/OutputStream;Ljava/lang/String;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoadingDoc(Ljava/io/InputStream;)Lorg/w3c/dom/Document;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "importProperties(Ljava/util/Properties;Lorg/w3c/dom/Element;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "load(Ljava/util/Properties;Ljava/io/InputStream;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "save(Ljava/util/Properties;Ljava/io/OutputStream;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ArrayBlockingQueue$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/AbstractExecutorService;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancelAll(Ljava/util/ArrayList;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelAll(Ljava/util/ArrayList;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doInvokeAny(Ljava/util/Collection;ZJ)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invokeAll(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newTaskFor(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newTaskFor(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ArrayBlockingQueue$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ArrayBlockingQueue$Itr;": {"fields": {"DETACHED:I": {"value": "-0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NONE:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REMOVED:I": {"value": "-0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevCycles:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevTakeIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ArrayBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ArrayBlockingQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "detach()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "distance(III)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "incCursor(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "incorporateDequeues()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invalidated(IIJI)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "noNext()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDetached()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removedAt(I)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shutdown()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "takeIndexWrapped()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ArrayBlockingQueue$Itrs$Node;": {"fields": {"next:Ljava/util/concurrent/ArrayBlockingQueue$Itrs$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$1:Ljava/util/concurrent/ArrayBlockingQueue$Itrs;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ArrayBlockingQueue$Itrs;Ljava/util/concurrent/ArrayBlockingQueue$Itr;Ljava/util/concurrent/ArrayBlockingQueue$Itrs$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ArrayBlockingQueue$Itrs;": {"fields": {"LONG_SWEEP_PROBES:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHORT_SWEEP_PROBES:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cycles:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/ArrayBlockingQueue$Itrs$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sweeper:Ljava/util/concurrent/ArrayBlockingQueue$Itrs$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ArrayBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ArrayBlockingQueue;Ljava/util/concurrent/ArrayBlockingQueue$Itr;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSomeSweeping(Z)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "elementDequeued()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queueIsEmpty()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "register(Ljava/util/concurrent/ArrayBlockingQueue$Itr;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removedAt(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "takeIndexWrapped()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ArrayBlockingQueue;": {"fields": {"serialVersionUID:J": {"value": "-0xb59ce4be1ef907aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "items:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "itrs:Ljava/util/concurrent/ArrayBlockingQueue$Itrs;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "notEmpty:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "notFull:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "takeIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IZLjava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bulkRemoveModified(Ljava/util/function/Predicate;I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "circularClear([Ljava/lang/Object;II)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dec(II)I": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dequeue()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "distanceNonEmpty(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enqueue(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inc(II)I": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invariantsSatisfied()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClear([JI)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "itemAt([Ljava/lang/Object;I)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nBits(I)[J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "setBit([JI)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkInvariants()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "itemAt(I)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAt(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/BlockingDeque;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFirst(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLast(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "takeFirst()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "takeLast()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/BlockingQueue;": {"fields": {}, "methods": {"add(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/BrokenBarrierException;": {"fields": {"serialVersionUID:J": {"value": "0x62c610b23d3ca0e4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Callable;": {"fields": {}, "methods": {"call()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$AltResult;": {"fields": {"ex:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CancellationException;": {"fields": {"serialVersionUID:J": {"value": "-0x7fb4af9837b0d7e7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$AnyOf;": {"fields": {"dep:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "src:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "srcs:[Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;[Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLive()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$AsyncSupply;": {"fields": {"dep:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fn:Ljava/util/function/Supplier;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$AsyncRun;": {"fields": {"dep:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fn:Ljava/lang/Runnable;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$AsynchronousCompletionTask;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/CompletableFuture$BiAccept;": {"fields": {"fn:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/BiConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$BiRelay;": {"fields": {}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$BiCompletion;": {"fields": {"snd:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$BiApply;": {"fields": {"fn:Ljava/util/function/BiFunction;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$BiRun;": {"fields": {"fn:Ljava/lang/Runnable;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$Canceller;": {"fields": {"f:Ljava/util/concurrent/Future;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Future;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$CoCompletion;": {"fields": {"base:Ljava/util/concurrent/CompletableFuture$BiCompletion;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture$BiCompletion;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLive()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$DelayedExecutor;": {"fields": {"delay:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unit:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/Executor;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$DelayedCompleter;": {"fields": {"f:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "u:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$Completion;": {"fields": {"next:Ljava/util/concurrent/CompletableFuture$Completion;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLive()Z": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$Delayer$DaemonThreadFactory;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$Delayer;": {"fields": {"delayer:Ljava/util/concurrent/ScheduledThreadPoolExecutor;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "delay(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$MinimalStage;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complete(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeAsync(Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeAsync(Ljava/util/function/Supplier;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeExceptionally(Ljava/lang/Throwable;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeOnTimeout(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNow(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberOfDependents()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCancelled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCompletedExceptionally()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newIncompleteFuture()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "obtrudeException(Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "obtrudeValue(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orTimeout(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCompletableFuture()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$OrAccept;": {"fields": {"fn:Ljava/util/function/Consumer;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$OrApply;": {"fields": {"fn:Ljava/util/function/Function;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$OrRun;": {"fields": {"fn:Ljava/lang/Runnable;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$Signaller;": {"fields": {"deadline:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interrupted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptible:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nanos:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ZJJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "block()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLive()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isReleasable()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$TaskSubmitter;": {"fields": {"action:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$ThreadPerTaskExecutor;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$Timeout;": {"fields": {"f:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletableFuture$UniCompose;": {"fields": {"fn:Ljava/util/function/Function;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniCompletion;": {"fields": {"dep:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "src:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "claim()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLive()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniApply;": {"fields": {"fn:Ljava/util/function/Function;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniAccept;": {"fields": {"fn:Ljava/util/function/Consumer;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniExceptionally;": {"fields": {"fn:Ljava/util/function/Function;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniHandle;": {"fields": {"fn:Ljava/util/function/BiFunction;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniRelay;": {"fields": {}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniRun;": {"fields": {"fn:Ljava/lang/Runnable;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture$UniWhenComplete;": {"fields": {"fn:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/BiConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryFire(I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CompletableFuture;": {"fields": {"ASYNC:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ASYNC_POOL:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NESTED:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NIL:Ljava/util/concurrent/CompletableFuture$AltResult;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESULT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STACK:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SYNC:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USE_COMMON_POOL:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stack:Ljava/util/concurrent/CompletableFuture$Completion;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allOf([Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andTree([Ljava/util/concurrent/CompletableFuture;II)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "anyOf([Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asyncRunStage(Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asyncSupplyStage(Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "biAcceptStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "biApplyStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "biRunStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completedFuture(Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completedStage(Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delayedExecutor(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Executor;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delayedExecutor(JLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodeRelay(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encodeThrowable(Ljava/lang/Throwable;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encodeThrowable(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture$AltResult;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "failedFuture(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "failedStage(Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orAcceptStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "orApplyStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "orRunStage(Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reportGet(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reportJoin(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runAsync(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAsync(Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "screenExecutor(Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supplyAsync(Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supplyAsync(Ljava/util/function/Supplier;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "timedGet(J)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniAcceptNow(Ljava/lang/Object;Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniAcceptStage(Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniApplyNow(Ljava/lang/Object;Ljava/util/concurrent/Executor;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniApplyStage(Ljava/util/concurrent/Executor;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniAsMinimalStage()Ljava/util/concurrent/CompletableFuture$MinimalStage;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniComposeStage(Ljava/util/concurrent/Executor;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniCopyStage(Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniExceptionallyStage(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniHandleStage(Ljava/util/concurrent/Executor;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniRunNow(Ljava/lang/Object;Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniRunStage(Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniWhenCompleteStage(Ljava/util/concurrent/Executor;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waitingGet(Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acceptEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "biAccept(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiConsumer;Ljava/util/concurrent/CompletableFuture$BiAccept;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "biApply(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture$BiApply;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "biRun(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Runnable;Ljava/util/concurrent/CompletableFuture$BiRun;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bipush(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture$BiCompletion;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cleanStack()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "complete(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeAsync(Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeAsync(Ljava/util/function/Supplier;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeExceptionally(Ljava/lang/Throwable;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeNull()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completeOnTimeout(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeRelay(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completeThrowable(Ljava/lang/Throwable;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completeThrowable(Ljava/lang/Throwable;Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completeValue(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copy()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultExecutor()Ljava/util/concurrent/Executor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodeOutcome(Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encodeValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exceptionally(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exceptionally(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNow(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberOfDependents()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handle(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handle(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalComplete(Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCancelled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCompletedExceptionally()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minimalCompletionStage()Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newIncompleteFuture()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "obtrudeException(Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "obtrudeValue(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orTimeout(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "orpush(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture$BiCompletion;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "postComplete()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "postFire(Ljava/util/concurrent/CompletableFuture;I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "postFire(Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;I)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushStack(Ljava/util/concurrent/CompletableFuture$Completion;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runAfterBoth(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBoth(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEither(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEither(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAccept(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAccept(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBoth(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBoth(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApply(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApply(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombine(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombine(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCompose(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCompose(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRun(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRun(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCompletableFuture()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryPushStack(Ljava/util/concurrent/CompletableFuture$Completion;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uniExceptionally(Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/concurrent/CompletableFuture$UniExceptionally;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniHandle(Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture$UniHandle;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniWhenComplete(Ljava/lang/Object;Ljava/util/function/BiConsumer;Ljava/util/concurrent/CompletableFuture$UniWhenComplete;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unipush(Ljava/util/concurrent/CompletableFuture$Completion;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "whenComplete(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenComplete(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletionException;": {"fields": {"serialVersionUID:J": {"value": "0x6caab173bfb4e069L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletionStage;": {"fields": {}, "methods": {"acceptEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEither(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyToEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exceptionally(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handle(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleAsync(Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBoth(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEither(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAfterEitherAsync(Ljava/util/concurrent/CompletionStage;Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAccept(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptAsync(Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBoth(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenAcceptBothAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApply(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenApplyAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombine(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCombineAsync(Ljava/util/concurrent/CompletionStage;Ljava/util/function/BiFunction;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenCompose(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenComposeAsync(Ljava/util/function/Function;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRun(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "thenRunAsync(Ljava/lang/Runnable;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCompletableFuture()Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenComplete(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "whenCompleteAsync(Ljava/util/function/BiConsumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletionStage;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CompletionService;": {"fields": {}, "methods": {"poll()Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$BaseIterator;": {"fields": {"lastReturned:Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIILjava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$BulkTask;": {"fields": {"baseIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseLimit:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseSize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spare:Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stack:Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tab:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushState([Ljava/util/concurrent/ConcurrentHashMap$Node;II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "recoverState(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advance()Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$CollectionView;": {"fields": {"OOME_MSG:Ljava/lang/String;": {"value": "\"Required array size too large\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6499de129d87293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "map:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMap()Ljava/util/concurrent/ConcurrentHashMap;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$CounterCell;": {"fields": {"value:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$EntryIterator;": {"fields": {}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIILjava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$EntrySetView;": {"fields": {"serialVersionUID:J": {"value": "0x1f364c905893293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/util/Map$Entry;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$EntrySpliterator;": {"fields": {"est:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIIJLjava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentHashMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachEntryTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachKeyTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachMappingTask;": {"fields": {"action:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/BiConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachTransformedEntryTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachTransformedKeyTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachTransformedMappingTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/BiFunction;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachTransformedValueTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForEachValueTask;": {"fields": {"action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ForwardingNode;": {"fields": {"nextTable:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "find(ILjava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$KeyIterator;": {"fields": {}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIILjava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"fields": {"serialVersionUID:J": {"value": "0x6499de129d87293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMap()Ljava/util/concurrent/ConcurrentHashMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMappedValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$KeySpliterator;": {"fields": {"est:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIIJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentHashMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesTask;Ljava/util/function/Function;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapEntry;": {"fields": {"key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "val:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToDoubleTask;": {"fields": {"basis:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:D": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToDoubleTask;Ljava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Double;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToIntTask;": {"fields": {"basis:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToIntTask;Ljava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Integer;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToLongTask;": {"fields": {"basis:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceEntriesToLongTask;Ljava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Long;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysTask;Ljava/util/function/Function;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToDoubleTask;": {"fields": {"basis:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:D": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToDoubleTask;Ljava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Double;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToIntTask;": {"fields": {"basis:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToIntTask;Ljava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Integer;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToLongTask;": {"fields": {"basis:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceKeysToLongTask;Ljava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Long;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsTask;Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToDoubleTask;": {"fields": {"basis:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:D": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToDoubleBiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToDoubleTask;Ljava/util/function/ToDoubleBiFunction;DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Double;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToIntTask;": {"fields": {"basis:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToIntBiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToIntTask;Ljava/util/function/ToIntBiFunction;ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Integer;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToLongTask;": {"fields": {"basis:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToLongBiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceMappingsToLongTask;Ljava/util/function/ToLongBiFunction;JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Long;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesTask;Ljava/util/function/Function;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToDoubleTask;": {"fields": {"basis:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:D": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToDoubleTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToDoubleTask;Ljava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Double;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToIntTask;": {"fields": {"basis:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToIntTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToIntTask;Ljava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Integer;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToLongTask;": {"fields": {"basis:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextRight:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToLongTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformer:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$MapReduceValuesToLongTask;Ljava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Long;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$Node;": {"fields": {"hash:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "val:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/concurrent/ConcurrentHashMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "find(ILjava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValue(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ReduceEntriesTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$ReduceEntriesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/util/Map$Entry;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$ReduceEntriesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$ReduceEntriesTask;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/util/Map$Entry;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$ReduceKeysTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$ReduceKeysTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$ReduceKeysTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$ReduceKeysTask;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ReduceValuesTask;": {"fields": {"nextRight:Ljava/util/concurrent/ConcurrentHashMap$ReduceValuesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rights:Ljava/util/concurrent/ConcurrentHashMap$ReduceValuesTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$ReduceValuesTask;Ljava/util/function/BiFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ReservationNode;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "find(ILjava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$SearchEntriesTask$$ExternalSyntheticBackportWithForwarding0;": {"fields": {}, "methods": {"m(Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$SearchEntriesTask;": {"fields": {"result:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "searchFunction:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/concurrent/atomic/AtomicReference;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$SearchKeysTask;": {"fields": {"result:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "searchFunction:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/concurrent/atomic/AtomicReference;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$SearchValuesTask;": {"fields": {"result:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "searchFunction:Ljava/util/function/Function;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/Function;Ljava/util/concurrent/atomic/AtomicReference;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$SearchMappingsTask;": {"fields": {"result:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "searchFunction:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap$BulkTask;III[Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/function/BiFunction;Ljava/util/concurrent/atomic/AtomicReference;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$Segment;": {"fields": {"serialVersionUID:J": {"value": "0x1f364c905893293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "loadFactor:F": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(F)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"fields": {"index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tab:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$Traverser;": {"fields": {"baseIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseLimit:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baseSize:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spare:Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stack:Ljava/util/concurrent/ConcurrentHashMap$TableStack;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tab:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushState([Ljava/util/concurrent/ConcurrentHashMap$Node;II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "recoverState(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advance()Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$TreeBin;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCKSTATE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "READER:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WAITER:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WRITER:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "first:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockState:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waiter:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "balanceDeletion(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "balanceInsertion(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInvariants(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contendedLock()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockRoot()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateLeft(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotateRight(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tieBreakOrder(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlockRoot()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "find(ILjava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putTreeVal(ILjava/lang/Object;Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeTreeNode(Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"fields": {"left:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "red:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "right:Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/Object;Ljava/lang/Object;Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$TreeNode;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "find(ILjava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findTreeNode(ILjava/lang/Object;Ljava/lang/Class;)Ljava/util/concurrent/ConcurrentHashMap$TreeNode;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$ValueIterator;": {"fields": {}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIILjava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap$ValueSpliterator;": {"fields": {"est:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/concurrent/ConcurrentHashMap$Node;IIIJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentHashMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentHashMap$ValuesView;": {"fields": {"serialVersionUID:J": {"value": "0x1f364c905893293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentHashMap;": {"fields": {"ABASE:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ASHIFT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BASECOUNT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CELLSBUSY:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CELLVALUE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_CAPACITY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_CONCURRENCY_LEVEL:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HASH_BITS:I": {"value": "0x7fffffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOAD_FACTOR:F": {"value": "0.75f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAXIMUM_CAPACITY:I": {"value": "0x40000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_RESIZERS:I": {"value": "0xffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_TRANSFER_STRIDE:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_TREEIFY_CAPACITY:I": {"value": "0x40", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MOVED:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NCPU:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESERVED:I": {"value": "-0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESIZE_STAMP_BITS:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RESIZE_STAMP_SHIFT:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIZECTL:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TRANSFERINDEX:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TREEBIN:I": {"value": "-0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TREEIFY_THRESHOLD:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNTREEIFY_THRESHOLD:I": {"value": "0x6", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6499de129d87293dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseCount:J": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cellsBusy:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "counterCells:[Ljava/util/concurrent/ConcurrentHashMap$CounterCell;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet:Ljava/util/concurrent/ConcurrentHashMap$EntrySetView;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySet:Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextTable:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sizeCtl:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "table:[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferIndex:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/concurrent/ConcurrentHashMap$ValuesView;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IFI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addCount(JI)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casTabAt([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)Z": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparableClassFor(Ljava/lang/Object;)Ljava/lang/Class;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareComparables(Ljava/lang/Class;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullAddCount(JZ)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initTable()[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newKeySet()Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newKeySet(I)Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "resizeStamp(I)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setTabAt([Ljava/util/concurrent/ConcurrentHashMap$Node;ILjava/util/concurrent/ConcurrentHashMap$Node;)V": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spread(I)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tabAt([Ljava/util/concurrent/ConcurrentHashMap$Node;I)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tableSizeFor(I)I": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transfer([Ljava/util/concurrent/ConcurrentHashMap$Node;[Ljava/util/concurrent/ConcurrentHashMap$Node;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "treeifyBin([Ljava/util/concurrent/ConcurrentHashMap$Node;I)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryPresize(I)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "untreeify(Ljava/util/concurrent/ConcurrentHashMap$Node;)Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "batchFor(J)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(JLjava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(JLjava/util/function/BiFunction;Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachEntry(JLjava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachEntry(JLjava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachKey(JLjava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachKey(JLjava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachValue(JLjava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachValue(JLjava/util/function/Function;Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "helpTransfer([Ljava/util/concurrent/ConcurrentHashMap$Node;Ljava/util/concurrent/ConcurrentHashMap$Node;)[Ljava/util/concurrent/ConcurrentHashMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentHashMap$KeySetView;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mappingCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putVal(Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reduce(JLjava/util/function/BiFunction;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceEntries(JLjava/util/function/Function;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceEntries(JLjava/util/function/BiFunction;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceEntriesToDouble(JLjava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceEntriesToInt(JLjava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceEntriesToLong(JLjava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceKeys(JLjava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceKeys(JLjava/util/function/Function;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceKeysToDouble(JLjava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceKeysToInt(JLjava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceKeysToLong(JLjava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceToDouble(JLjava/util/function/ToDoubleBiFunction;DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceToInt(JLjava/util/function/ToIntBiFunction;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceToLong(JLjava/util/function/ToLongBiFunction;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceValues(JLjava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceValues(JLjava/util/function/Function;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceValuesToDouble(JLjava/util/function/ToDoubleFunction;DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceValuesToInt(JLjava/util/function/ToIntFunction;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduceValuesToLong(JLjava/util/function/ToLongFunction;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeEntryIf(Ljava/util/function/Predicate;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeValueIf(Ljava/util/function/Predicate;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceNode(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "search(JLjava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "searchEntries(JLjava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "searchKeys(JLjava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "searchValues(JLjava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sumCount()J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$AbstractItr;": {"fields": {"lastRet:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNode:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentLinkedDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "advance()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextNode(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startNode()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$CLDSpliterator;": {"fields": {"MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exhausted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentLinkedDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCurrent(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$DescendingItr;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentLinkedDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextNode(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startNode()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$Itr;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentLinkedDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextNode(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startNode()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"fields": {"item:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedDeque;": {"fields": {"HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HOPS:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ITEM:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEXT_TERMINATOR:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PREV:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREV_TERMINATOR:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0xc29535d4a608822L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initHeadTail(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "linkFirst(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linkLast(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "screenNullResult(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipDeletedPredecessors(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipDeletedSuccessors(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toArrayInternal([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkFirst(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkLast(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateHead()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateTail()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextTerminator()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pred(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prevTerminator()Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "push(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "succ(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)Ljava/util/concurrent/ConcurrentLinkedDeque$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlink(Ljava/util/concurrent/ConcurrentLinkedDeque$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$CLQSpliterator;": {"fields": {"MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exhausted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentLinkedQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current()Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCurrent(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$Itr;": {"fields": {"lastRet:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNode:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentLinkedQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentLinkedQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"fields": {"item:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendRelaxed(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "casItem(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentLinkedQueue;": {"fields": {"HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ITEM:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_HOPS:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x2bafb2a664c708cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$clear$2(Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "skipDeadNodes(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toArrayInternal([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCasSuccessor(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachFrom(Ljava/util/function/Consumer;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "succ(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)Ljava/util/concurrent/ConcurrentLinkedQueue$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateHead(Ljava/util/concurrent/ConcurrentLinkedQueue$Node;Ljava/util/concurrent/ConcurrentLinkedQueue$Node;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentMap;": {"fields": {}, "methods": {"lambda$replaceAll$0(Ljava/util/concurrent/ConcurrentMap;Ljava/util/function/BiFunction;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentMap$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentMap;Ljava/util/function/BiFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentNavigableMap;": {"fields": {}, "methods": {"descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$CSLMSpliterator;": {"fields": {"comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "row:Ljava/util/concurrent/ConcurrentSkipListMap$Index;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;Ljava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/lang/Object;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$EntryIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$EntrySet;": {"fields": {"m:Ljava/util/concurrent/ConcurrentNavigableMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentNavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$EntrySpliterator$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$EntrySpliterator;": {"fields": {}, "methods": {"(Ljava/util/Comparator;Ljava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/lang/Object;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$getComparator$d5a01062$1(Ljava/util/Map$Entry;Ljava/util/Map$Entry;)I": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentSkipListMap$EntrySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$Index;": {"fields": {"down:Ljava/util/concurrent/ConcurrentSkipListMap$Index;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "node:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "right:Ljava/util/concurrent/ConcurrentSkipListMap$Index;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/concurrent/ConcurrentSkipListMap$Index;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$Iter;": {"fields": {"lastReturned:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextValue:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentSkipListMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "advance(Ljava/util/concurrent/ConcurrentSkipListMap$Node;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$KeyIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$KeySet;": {"fields": {"m:Ljava/util/concurrent/ConcurrentNavigableMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentNavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$KeySpliterator;": {"fields": {}, "methods": {"(Ljava/util/Comparator;Ljava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/lang/Object;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentSkipListMap$KeySpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"fields": {"key:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "val:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/concurrent/ConcurrentSkipListMap$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$SubMap$SubMapEntryIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$SubMap$SubMapIter;": {"fields": {"lastReturned:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextValue:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ascend()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descend()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advance()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$SubMap$SubMapKeyIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$SubMap$SubMapValueIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"fields": {"serialVersionUID:J": {"value": "-0x6a1fe183320cb959L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "entrySetView:Ljava/util/concurrent/ConcurrentSkipListMap$EntrySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hi:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hiInclusive:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDescending:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keySetView:Ljava/util/concurrent/ConcurrentSkipListMap$KeySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lo:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loInclusive:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "m:Ljava/util/concurrent/ConcurrentSkipListMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valuesView:Ljava/util/concurrent/ConcurrentSkipListMap$Values;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap;Ljava/lang/Object;ZLjava/lang/Object;ZZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkKeyBounds(Ljava/lang/Object;Ljava/util/Comparator;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNearEntry(Ljava/lang/Object;I)Ljava/util/Map$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNearKey(Ljava/lang/Object;I)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "headMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hiNode(Ljava/util/Comparator;)Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "highestEntry()Ljava/util/Map$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "highestKey()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inBounds(Ljava/lang/Object;Ljava/util/Comparator;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isBeforeEnd(Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/util/Comparator;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loNode(Ljava/util/Comparator;)Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowestEntry()Ljava/util/Map$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowestKey()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSubMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeHighest()Ljava/util/Map$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeLowest()Ljava/util/Map$Entry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tailMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tooHigh(Ljava/lang/Object;Ljava/util/Comparator;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tooLow(Ljava/lang/Object;Ljava/util/Comparator;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$ValueIterator;": {"fields": {"this$0:Ljava/util/concurrent/ConcurrentSkipListMap;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentSkipListMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$ValueSpliterator;": {"fields": {}, "methods": {"(Ljava/util/Comparator;Ljava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/lang/Object;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ConcurrentSkipListMap$ValueSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ConcurrentSkipListMap$Values;": {"fields": {"m:Ljava/util/concurrent/ConcurrentNavigableMap;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ConcurrentNavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListMap;": {"fields": {"ADDER:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EQ:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GT:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RIGHT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VAL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x77b98a51f9eeb959L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adder:Ljava/util/concurrent/atomic/LongAdder;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "descendingMap:Ljava/util/concurrent/ConcurrentSkipListMap$SubMap;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entrySet:Ljava/util/concurrent/ConcurrentSkipListMap$EntrySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/ConcurrentSkipListMap$Index;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keySet:Ljava/util/concurrent/ConcurrentSkipListMap$KeySet;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values:Ljava/util/concurrent/ConcurrentSkipListMap$Values;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/SortedMap;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addCount(J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addIndices(Ljava/util/concurrent/ConcurrentSkipListMap$Index;ILjava/util/concurrent/ConcurrentSkipListMap$Index;Ljava/util/Comparator;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildFromSorted(Ljava/util/SortedMap;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cpr(Ljava/util/Comparator;Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doGet(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doPut(Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doRemoveFirstEntry()Ljava/util/AbstractMap$SimpleImmutableEntry;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doRemoveLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findNode(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findPredecessor(Ljava/lang/Object;Ljava/util/Comparator;)Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "toList(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryReduceLevel()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkNode(Ljava/util/concurrent/ConcurrentSkipListMap$Node;Ljava/util/concurrent/ConcurrentSkipListMap$Node;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "baseHead()Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ceilingEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceilingKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/concurrent/ConcurrentSkipListMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfAbsent(Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeIfPresent(Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingMap()Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doRemove(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySpliterator()Ljava/util/concurrent/ConcurrentSkipListMap$EntrySpliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findFirstEntry()Ljava/util/AbstractMap$SimpleImmutableEntry;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findLast()Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findLastEntry()Ljava/util/AbstractMap$SimpleImmutableEntry;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findNear(Ljava/lang/Object;ILjava/util/Comparator;)Ljava/util/concurrent/ConcurrentSkipListMap$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findNearEntry(Ljava/lang/Object;ILjava/util/Comparator;)Ljava/util/AbstractMap$SimpleImmutableEntry;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floorKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAdderCount()J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOrDefault(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higherKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySpliterator()Ljava/util/concurrent/ConcurrentSkipListMap$KeySpliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerEntry(Ljava/lang/Object;)Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lowerKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "merge(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "navigableKeySet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirstEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLastEntry()Ljava/util/Map$Entry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putIfAbsent(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeEntryIf(Ljava/util/function/Predicate;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeValueIf(Ljava/util/function/Predicate;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replace(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replace(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subMap(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/NavigableMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/SortedMap;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailMap(Ljava/lang/Object;Z)Ljava/util/concurrent/ConcurrentNavigableMap;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueSpliterator()Ljava/util/concurrent/ConcurrentSkipListMap$ValueSpliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListSet$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ConcurrentSkipListSet;": {"fields": {"serialVersionUID:J": {"value": "-0x2267af8642300ea5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "m:Ljava/util/concurrent/ConcurrentNavigableMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/SortedSet;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/ConcurrentNavigableMap;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$setMap$0()Ljava/lang/reflect/Field;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMap(Ljava/util/concurrent/ConcurrentNavigableMap;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ceiling(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/util/concurrent/ConcurrentSkipListSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingSet()Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "first()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floor(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "headSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "higher(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "last()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lower(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;Z)Ljava/util/NavigableSet;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tailSet(Ljava/lang/Object;)Ljava/util/SortedSet;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$COWIterator;": {"fields": {"cursor:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "snapshot:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([Ljava/lang/Object;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$COWSubList$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$COWSubList$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$COWSubListIterator;": {"fields": {"it:Ljava/util/ListIterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;III)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasPrevious()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previous()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "previousIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList$COWSubList;": {"fields": {"expectedArray:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/CopyOnWriteArrayList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CopyOnWriteArrayList;[Ljava/lang/Object;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkForComodification()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getArrayChecked()[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rangeCheck(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rangeCheckForAdd(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArrayList;": {"fields": {"serialVersionUID:J": {"value": "0x785d9fd546ab90c3L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smhashCodeOfRange([Ljava/lang/Object;II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smindexOfRange(Ljava/lang/Object;[Ljava/lang/Object;II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smlastIndexOfRange(Ljava/lang/Object;[Ljava/lang/Object;II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIfAbsent(Ljava/lang/Object;[Ljava/lang/Object;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "elementAt([Ljava/lang/Object;I)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCodeOfRange([Ljava/lang/Object;II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOfRange(Ljava/lang/Object;[Ljava/lang/Object;II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClear([JI)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$resetLock$2()Ljava/lang/reflect/Field;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastIndexOfRange(Ljava/lang/Object;[Ljava/lang/Object;II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nBits(I)[J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBounds(II)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;[Ljava/lang/Object;I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resetLock()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setBit([JI)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(ILjava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAllAbsent(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addIfAbsent(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;II)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArray()[Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "indexOf(Ljava/lang/Object;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastIndexOf(Ljava/lang/Object;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator()Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listIterator(I)Ljava/util/ListIterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRange(II)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replaceAll(Ljava/util/function/UnaryOperator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAllRange(Ljava/util/function/UnaryOperator;II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setArray([Ljava/lang/Object;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sort(Ljava/util/Comparator;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sortRange(Ljava/util/Comparator;II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subList(II)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CopyOnWriteArraySet;": {"fields": {"serialVersionUID:J": {"value": "0x4bbdd092901569d7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "al:Ljava/util/concurrent/CopyOnWriteArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareSets([Ljava/lang/Object;Ljava/util/Set;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CountDownLatch$Sync;": {"fields": {"serialVersionUID:J": {"value": "0x45248f9a985464a6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCount()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquireShared(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReleaseShared(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CountDownLatch;": {"fields": {"sync:Ljava/util/concurrent/CountDownLatch$Sync;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "countDown()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CountedCompleter;": {"fields": {"PENDING:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x489d68f7081983ceL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "completer:Ljava/util/concurrent/CountedCompleter;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pending:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/CountedCompleter;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addToPendingCount(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSetPendingCount(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complete(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementPendingCountUnlessZero()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstComplete()Ljava/util/concurrent/CountedCompleter;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCompleter()Ljava/util/concurrent/CountedCompleter;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPendingCount()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoot()Ljava/util/concurrent/CountedCompleter;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "helpComplete(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalPropagateException(Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextComplete()Ljava/util/concurrent/CountedCompleter;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onExceptionalCompletion(Ljava/lang/Throwable;Ljava/util/concurrent/CountedCompleter;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "propagateCompletion()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quietlyCompleteRoot()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPendingCount(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryComplete()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/CyclicBarrier$Generation;": {"fields": {"broken:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/CyclicBarrier;": {"fields": {"barrierCommand:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generation:Ljava/util/concurrent/CyclicBarrier$Generation;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parties:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trip:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/lang/Runnable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "breakBarrier()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dowait(ZJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextGeneration()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "await()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await(JLjava/util/concurrent/TimeUnit;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberWaiting()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParties()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBroken()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/DelayQueue$Itr;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/DelayQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/DelayQueue;[Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/concurrent/Delayed;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/DelayQueue;": {"fields": {"available:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leader:Ljava/lang/Thread;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "q:Ljava/util/PriorityQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/util/concurrent/Delayed;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/util/concurrent/Delayed;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/util/concurrent/Delayed;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/util/concurrent/Delayed;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/util/concurrent/Delayed;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Delayed;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/util/concurrent/Delayed;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeEQ(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/util/concurrent/Delayed;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Delayed;": {"fields": {}, "methods": {"getDelay(Ljava/util/concurrent/TimeUnit;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Exchanger$Node;": {"fields": {"bound:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collides:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "item:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parked:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Exchanger$Participant;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Ljava/util/concurrent/Exchanger$Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Exchanger;": {"fields": {"AA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ASHIFT:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BOUND:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FULL:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MATCH:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MMASK:I": {"value": "0xff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NCPU:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NULL_ITEM:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEQ:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SLOT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPINS:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIMED_OUT:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arena:[Ljava/util/concurrent/Exchanger$Node;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bound:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "participant:Ljava/util/concurrent/Exchanger$Participant;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slot:Ljava/util/concurrent/Exchanger$Node;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arenaExchange(Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "slotExchange(Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exchange(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exchange(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ExecutionException;": {"fields": {"serialVersionUID:J": {"value": "0x6caab173bfb4e069L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executor;": {"fields": {}, "methods": {"execute(Ljava/lang/Runnable;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ExecutorCompletionService$QueueingFuture;": {"fields": {"completionQueue:Ljava/util/concurrent/BlockingQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "task:Ljava/util/concurrent/Future;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/RunnableFuture;Ljava/util/concurrent/BlockingQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "done()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ExecutorCompletionService;": {"fields": {"aes:Ljava/util/concurrent/AbstractExecutorService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "completionQueue:Ljava/util/concurrent/BlockingQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Executor;Ljava/util/concurrent/BlockingQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newTaskFor(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newTaskFor(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "poll()Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ExecutorService;": {"fields": {}, "methods": {"awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShutdown()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdown()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$1;": {"fields": {"val$action:Ljava/security/PrivilegedAction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/PrivilegedAction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "call()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$2;": {"fields": {"val$action:Ljava/security/PrivilegedExceptionAction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/PrivilegedExceptionAction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "call()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$DefaultThreadFactory;": {"fields": {"poolNumber:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "group:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "namePrefix:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadNumber:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$DelegatedExecutorService;": {"fields": {"e:Ljava/util/concurrent/ExecutorService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ExecutorService;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAny(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdown()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$DelegatedScheduledExecutorService;": {"fields": {"e:Ljava/util/concurrent/ScheduledExecutorService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ScheduledExecutorService;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "schedule(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleAtFixedRate(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleWithFixedDelay(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$FinalizableDelegatedExecutorService;": {"fields": {}, "methods": {"(Ljava/util/concurrent/ExecutorService;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedCallable$1;": {"fields": {"this$0:Ljava/util/concurrent/Executors$PrivilegedCallable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executors$PrivilegedCallable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedCallable;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "task:Ljava/util/concurrent/Callable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Callable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "call()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedCallableUsingCurrentClassLoader$1;": {"fields": {"this$0:Ljava/util/concurrent/Executors$PrivilegedCallableUsingCurrentClassLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executors$PrivilegedCallableUsingCurrentClassLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedCallableUsingCurrentClassLoader;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ccl:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "task:Ljava/util/concurrent/Callable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Callable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "call()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedThreadFactory$1$1;": {"fields": {"this$1:Ljava/util/concurrent/Executors$PrivilegedThreadFactory$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executors$PrivilegedThreadFactory$1;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Executors$PrivilegedThreadFactory$1;": {"fields": {"this$0:Ljava/util/concurrent/Executors$PrivilegedThreadFactory;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$r:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Executors$PrivilegedThreadFactory;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$PrivilegedThreadFactory;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ccl:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Flow$Processor;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/Executors;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "callable(Ljava/lang/Runnable;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "callable(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "callable(Ljava/security/PrivilegedAction;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "callable(Ljava/security/PrivilegedExceptionAction;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultThreadFactory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCachedThreadPool()Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCachedThreadPool(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFixedThreadPool(I)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFixedThreadPool(ILjava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newScheduledThreadPool(I)Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newScheduledThreadPool(ILjava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSingleThreadExecutor()Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSingleThreadExecutor(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSingleThreadScheduledExecutor()Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSingleThreadScheduledExecutor(Ljava/util/concurrent/ThreadFactory;)Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWorkStealingPool()Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newWorkStealingPool(I)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "privilegedCallable(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "privilegedCallableUsingCurrentClassLoader(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Callable;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "privilegedThreadFactory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unconfigurableExecutorService(Ljava/util/concurrent/ExecutorService;)Ljava/util/concurrent/ExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unconfigurableScheduledExecutorService(Ljava/util/concurrent/ScheduledExecutorService;)Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Executors$RunnableAdapter;": {"fields": {"result:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "task:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "call()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Flow$Publisher;": {"fields": {}, "methods": {"subscribe(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Flow$Subscription;": {"fields": {}, "methods": {"cancel()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "request(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Flow$Subscriber;": {"fields": {}, "methods": {"onComplete()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onError(Ljava/lang/Throwable;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onNext(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onSubscribe(Ljava/util/concurrent/Flow$Subscription;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/concurrent/ForkJoinPool;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Flow;": {"fields": {"DEFAULT_BUFFER_SIZE:I": {"value": "0x100", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultBufferSize()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory$1;": {"fields": {"this$0:Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$pool:Ljava/util/concurrent/ForkJoinPool;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory;Ljava/util/concurrent/ForkJoinPool;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/concurrent/ForkJoinWorkerThread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;": {"fields": {}, "methods": {"newThread(Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory;": {"fields": {"ACC:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory-IA;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory-IA;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory$1;": {"fields": {"this$0:Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$pool:Ljava/util/concurrent/ForkJoinPool;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory;Ljava/util/concurrent/ForkJoinPool;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/concurrent/ForkJoinWorkerThread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinPool-IA;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/ForkJoinPool$WorkQueue;": {"fields": {"BASE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PHASE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TOP:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "array:[Ljava/util/concurrent/ForkJoinTask;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "base:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "id:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nsteals:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "owner:Ljava/util/concurrent/ForkJoinWorkerThread;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "phase:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pool:Ljava/util/concurrent/ForkJoinPool;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "source:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stackPred:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "top:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool;Ljava/util/concurrent/ForkJoinWorkerThread;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelAll()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPoolIndex()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "growArray(Z)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helpAsyncBlocker(Ljava/util/concurrent/ForkJoinPool$ManagedBlocker;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helpCC(Ljava/util/concurrent/CountedCompleter;IZ)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isApparentlyUnblocked()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockedPush(Ljava/util/concurrent/ForkJoinTask;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextLocalTask()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peek()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "poll()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "push(Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queueSize()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "releasePhaseLock()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "topLevelExec(Ljava/util/concurrent/ForkJoinTask;Ljava/util/concurrent/ForkJoinPool$WorkQueue;I)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryLockPhase()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryLockedUnpush(Ljava/util/concurrent/ForkJoinTask;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryRemoveAndExec(Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryUnpush(Ljava/util/concurrent/ForkJoinTask;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinPool$ManagedBlocker;": {"fields": {}, "methods": {"block()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReleasable()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory;": {"fields": {"ACC:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool$InnocuousForkJoinWorkerThreadFactory-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinTask$AdaptedRunnable;": {"fields": {"serialVersionUID:J": {"value": "0x489d6925990d6e4eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runnable:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinTask$AdaptedCallable;": {"fields": {"serialVersionUID:J": {"value": "0x2763fe86dcb18e30L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "callable:Ljava/util/concurrent/Callable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Callable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinPool;": {"fields": {"ADD_WORKER:J": {"value": "0x800000000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COMMON_MAX_SPARES:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COMMON_PARALLELISM:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CTL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_COMMON_MAX_SPARES:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEFAULT_KEEPALIVE:J": {"value": "0xea60L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DORMANT:I": {"value": "-0x40000000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FIFO:I": {"value": "0x10000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INITIAL_QUEUE_CAPACITY:I": {"value": "0x2000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAXIMUM_QUEUE_CAPACITY:I": {"value": "0x4000000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_CAP:I": {"value": "0x7fff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OWNED:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QLOCK:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QUIET:I": {"value": "0x40000000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RC_MASK:J": {"value": "-0x1000000000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RC_SHIFT:I": {"value": "0x30", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RC_UNIT:J": {"value": "0x1000000000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SEED_INCREMENT:I": {"value": "-0x61c88647", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHUTDOWN:I": {"value": "0x40000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SMASK:I": {"value": "0xffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SP_MASK:J": {"value": "0xffffffffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SQMASK:I": {"value": "0x7e", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SS_SEQ:I": {"value": "0x10000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STOP:I": {"value": "-0x80000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SWIDTH:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TC_MASK:J": {"value": "0xffff00000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TC_SHIFT:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TC_UNIT:J": {"value": "0x100000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TERMINATED:I": {"value": "0x80000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIMEOUT_SLOP:J": {"value": "0x14L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TOP_BOUND_SHIFT:I": {"value": "0xa", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UC_MASK:J": {"value": "-0x100000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSIGNALLED:I": {"value": "-0x80000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "common:Ljava/util/concurrent/ForkJoinPool;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultForkJoinWorkerThreadFactory:Ljava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "modifyThreadPermission:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "poolNumberSequence:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bounds:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ctl:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factory:Ljava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexSeed:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keepAlive:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mode:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "saturate:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stealCount:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ueh:Ljava/lang/Thread$UncaughtExceptionHandler;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workQueues:[Ljava/util/concurrent/ForkJoinPool$WorkQueue;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workerNamePrefix:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(B)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(BLjava/util/concurrent/ForkJoinPool-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;Ljava/lang/Thread$UncaughtExceptionHandler;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;Ljava/lang/Thread$UncaughtExceptionHandler;ZIIILjava/util/function/Predicate;JLjava/util/concurrent/TimeUnit;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "commonPool()Ljava/util/concurrent/ForkJoinPool;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "commonSubmitterQueue()Ljava/util/concurrent/ForkJoinPool$WorkQueue;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contextWithPermissions([Ljava/security/Permission;)Ljava/security/AccessControlContext;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createWorker()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "externalSubmit(Ljava/util/concurrent/ForkJoinTask;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCommonPoolParallelism()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSurplusQueuedTaskCount()I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "helpAsyncBlocker(Ljava/util/concurrent/Executor;Ljava/util/concurrent/ForkJoinPool$ManagedBlocker;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "managedBlock(Ljava/util/concurrent/ForkJoinPool$ManagedBlocker;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newInstanceFromSystemProperty(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextPoolId()I": {"other": [".method", "private", "static", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pollScan(Z)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quiesceCommonPool()V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scan(Ljava/util/concurrent/ForkJoinPool$WorkQueue;I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAddWorker(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCompensate(Ljava/util/concurrent/ForkJoinPool$WorkQueue;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryTerminate(ZZ)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitJoin(Ljava/util/concurrent/ForkJoinPool$WorkQueue;Ljava/util/concurrent/ForkJoinTask;J)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "awaitQuiescence(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deregisterWorker(Ljava/util/concurrent/ForkJoinWorkerThread;Ljava/lang/Throwable;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "drainTasksTo(Ljava/util/Collection;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "externalHelpComplete(Ljava/util/concurrent/CountedCompleter;I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "externalPush(Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getActiveThreadCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsyncMode()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFactory()Ljava/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParallelism()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPoolSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedSubmissionCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedTaskCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRunningThreadCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStealCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUncaughtExceptionHandler()Ljava/lang/Thread$UncaughtExceptionHandler;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedSubmissions()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "helpComplete(Ljava/util/concurrent/ForkJoinPool$WorkQueue;Ljava/util/concurrent/CountedCompleter;I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "helpQuiescePool(Ljava/util/concurrent/ForkJoinPool$WorkQueue;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invoke(Ljava/util/concurrent/ForkJoinTask;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isQuiescent()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminating()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newTaskFor(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newTaskFor(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/RunnableFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextTaskFor(Ljava/util/concurrent/ForkJoinPool$WorkQueue;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pollSubmission()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "registerWorker(Ljava/util/concurrent/ForkJoinWorkerThread;)Ljava/util/concurrent/ForkJoinPool$WorkQueue;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runWorker(Ljava/util/concurrent/ForkJoinPool$WorkQueue;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shutdown()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signalWork()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/ForkJoinTask;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryExternalUnpush(Ljava/util/concurrent/ForkJoinTask;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinTask$AdaptedRunnableAction;": {"fields": {"serialVersionUID:J": {"value": "0x489d6925990d6e4eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "runnable:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinTask$RunnableExecuteAction;": {"fields": {"serialVersionUID:J": {"value": "0x489d6925990d6e4eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "runnable:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "internalPropagateException(Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinTask$ExceptionNode;": {"fields": {"ex:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/ForkJoinTask$ExceptionNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thrower:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ForkJoinTask;Ljava/lang/Throwable;Ljava/util/concurrent/ForkJoinTask$ExceptionNode;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinTask;": {"fields": {"ABNORMAL:I": {"value": "0x40000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DONE:I": {"value": "-0x80000000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNAL:I": {"value": "0x10000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SMASK:I": {"value": "0xffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATUS:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THROWN:I": {"value": "0x20000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exceptionTable:[Ljava/util/concurrent/ForkJoinTask$ExceptionNode;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exceptionTableLock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exceptionTableRefQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x6b295cc9a986fd4fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "status:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abnormalCompletion(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adapt(Ljava/lang/Runnable;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adapt(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "adapt(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancelIgnoringExceptions(Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clearExceptionalCompletion()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doInvoke()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doJoin()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "expungeStaleExceptions()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "externalAwaitDone()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "externalInterruptibleAwaitDone()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPool()Ljava/util/concurrent/ForkJoinPool;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedTaskCount()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSurplusQueuedTaskCount()I": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThrowableException()Ljava/lang/Throwable;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "helpExpungeStaleExceptions()V": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "helpQuiesce()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inForkJoinPool()Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll(Ljava/util/concurrent/ForkJoinTask;Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invokeAll([Ljava/util/concurrent/ForkJoinTask;)V": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isExceptionalStatus(I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peekNextLocalTask()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "protected", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollNextLocalTask()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "protected", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollSubmission()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "protected", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pollTask()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "protected", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "reportException(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rethrow(Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDone()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setExceptionalCompletion(Ljava/lang/Throwable;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryExternalHelp()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uncheckedThrow(Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSetForkJoinTaskTag(SS)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "complete(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completeExceptionally(Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doExec()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fork()Ljava/util/concurrent/ForkJoinTask;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getException()Ljava/lang/Throwable;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getForkJoinTaskTag()S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalPropagateException(Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalWait(J)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "invoke()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCancelled()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCompletedAbnormally()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCompletedNormally()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quietlyComplete()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quietlyInvoke()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quietlyJoin()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "recordExceptionalCompletion(Ljava/lang/Throwable;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reinitialize()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setForkJoinTaskTag(S)S": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryUnfork()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinWorkerThread$InnocuousForkJoinWorkerThread$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/ThreadGroup;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ForkJoinWorkerThread$InnocuousForkJoinWorkerThread;": {"fields": {"innocuousThreadGroup:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterTopLevelExec()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setContextClassLoader(Ljava/lang/ClassLoader;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUncaughtExceptionHandler(Ljava/lang/Thread$UncaughtExceptionHandler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ForkJoinWorkerThread;": {"fields": {"INNOCUOUS_ACC:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pool:Ljava/util/concurrent/ForkJoinPool;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workQueue:Ljava/util/concurrent/ForkJoinPool$WorkQueue;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetINNOCUOUS_ACC()Ljava/security/AccessControlContext;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/ForkJoinPool;Ljava/lang/ClassLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ForkJoinPool;Ljava/lang/ClassLoader;Ljava/lang/ThreadGroup;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "afterTopLevelExec()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPool()Ljava/util/concurrent/ForkJoinPool;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPoolIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onStart()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onTermination(Ljava/lang/Throwable;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Future;": {"fields": {}, "methods": {"cancel(Z)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCancelled()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/FutureTask$WaitNode;": {"fields": {"next:Ljava/util/concurrent/FutureTask$WaitNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/FutureTask;": {"fields": {"CANCELLED:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COMPLETING:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EXCEPTIONAL:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "INTERRUPTED:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INTERRUPTING:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEW:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NORMAL:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RUNNER:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WAITERS:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "callable:Ljava/util/concurrent/Callable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "outcome:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "runner:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "waiters:Ljava/util/concurrent/FutureTask$WaitNode;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Runnable;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Callable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitDone(ZJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finishCompletion()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handlePossibleCancellationInterrupt(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeWaiter(Ljava/util/concurrent/FutureTask$WaitNode;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "report(I)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "done()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCancelled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runAndReset()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setException(Ljava/lang/Throwable;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Helpers;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "collectionToString(Ljava/util/Collection;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mapEntryToString(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "objectToString(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString([Ljava/lang/Object;II)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingDeque$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingDeque$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingDeque$AbstractItr;": {"fields": {"lastRet:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedBlockingDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "succ(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstNode()Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextNode(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingDeque$DescendingItr;": {"fields": {"this$0:Ljava/util/concurrent/LinkedBlockingDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstNode()Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNode(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingDeque$Itr;": {"fields": {"this$0:Ljava/util/concurrent/LinkedBlockingDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstNode()Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNode(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingDeque$LBDSpliterator;": {"fields": {"MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exhausted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedBlockingDeque;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingDeque;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"fields": {"item:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingDeque;": {"fields": {"serialVersionUID:J": {"value": "-0x56223931da801daL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "capacity:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "first:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "last:Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "notEmpty:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "notFull:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "linkFirst(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linkLast(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "unlinkFirst()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkLast()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addFirst(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addLast(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkInvariants()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descendingIterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "element()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachFrom(Ljava/util/function/Consumer;Ljava/util/concurrent/LinkedBlockingDeque$Node;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerFirst(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerLast(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollFirst(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pollLast(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pop()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFirst(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLast(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeFirstOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeLastOccurrence(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "succ(Ljava/util/concurrent/LinkedBlockingDeque$Node;)Ljava/util/concurrent/LinkedBlockingDeque$Node;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "takeFirst()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "takeLast()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlink(Ljava/util/concurrent/LinkedBlockingDeque$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingQueue$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingQueue$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingQueue$Itr;": {"fields": {"ancestor:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastRet:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingQueue$LBQSpliterator;": {"fields": {"MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "est:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exhausted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedBlockingQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"fields": {"item:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedBlockingQueue;": {"fields": {"serialVersionUID:J": {"value": "-0x5fcfb35fbf1a7e0aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "capacity:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "count:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "last:Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "notEmpty:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "notFull:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putLock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "takeLock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dequeue()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueue(Ljava/util/concurrent/LinkedBlockingQueue$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "signalNotEmpty()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signalNotFull()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findPred(Ljava/util/concurrent/LinkedBlockingQueue$Node;Ljava/util/concurrent/LinkedBlockingQueue$Node;)Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachFrom(Ljava/util/function/Consumer;Ljava/util/concurrent/LinkedBlockingQueue$Node;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullyLock()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullyUnlock()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "succ(Ljava/util/concurrent/LinkedBlockingQueue$Node;)Ljava/util/concurrent/LinkedBlockingQueue$Node;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlink(Ljava/util/concurrent/LinkedBlockingQueue$Node;Ljava/util/concurrent/LinkedBlockingQueue$Node;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedTransferQueue$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedTransferQueue$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedTransferQueue$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedTransferQueue$Itr;": {"fields": {"ancestor:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastRet:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextItem:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextNode:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedTransferQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedTransferQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "advance(Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedTransferQueue$LTQSpliterator;": {"fields": {"MAX_BATCH:I": {"value": "0x2000000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "batch:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exhausted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/LinkedTransferQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/LinkedTransferQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "current()Ljava/util/concurrent/LinkedTransferQueue$Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCurrent(Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/LinkedTransferQueue$Node;": {"fields": {"serialVersionUID:J": {"value": "-0x2ed9e3cc4e71ccaaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "isData:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "item:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waiter:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendRelaxed(Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cannotPrecede(Z)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casItem(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casNext(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forgetContents()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isMatched()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "selfLink()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryMatch(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/LinkedTransferQueue;": {"fields": {"ASYNC:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CHAINED_SPINS:I": {"value": "0x40", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FRONT_SPINS:I": {"value": "0x80", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ITEM:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_HOPS:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MP:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOW:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SWEEPVOTES:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SWEEP_THRESHOLD:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SYNC:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TIMED:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WAITER:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2cbacc91e0a3c166L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sweepVotes:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/LinkedTransferQueue$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mtryCasSuccessor(Ljava/util/concurrent/LinkedTransferQueue;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitMatch(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "casHead(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casTail(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "countOfMode(Z)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "incSweepVotes()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$clear$2(Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "skipDeadNodes(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Ljava/util/concurrent/LinkedTransferQueue$Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipDeadNodesNearHead(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spinsFor(Ljava/util/concurrent/LinkedTransferQueue$Node;Z)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sweep()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toArrayInternal([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCasSuccessor(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "xfer(Ljava/lang/Object;ZIJ)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "firstDataNode()Ljava/util/concurrent/LinkedTransferQueue$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachFrom(Ljava/util/function/Consumer;Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWaitingConsumerCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaitingConsumer()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transfer(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryTransfer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryTransfer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unsplice(Ljava/util/concurrent/LinkedTransferQueue$Node;Ljava/util/concurrent/LinkedTransferQueue$Node;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Phaser$QNode;": {"fields": {"deadline:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptible:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nanos:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/Phaser$QNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "phase:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "phaser:Ljava/util/concurrent/Phaser;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timed:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wasInterrupted:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Phaser;IZZJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "block()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReleasable()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Phaser;": {"fields": {"COUNTS_MASK:J": {"value": "0xffffffffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_PARTIES:I": {"value": "0xffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_PHASE:I": {"value": "0x7fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NCPU:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_ARRIVAL:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_DEREGISTER:I": {"value": "0x10001", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ONE_PARTY:I": {"value": "0x10000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PARTIES_MASK:J": {"value": "0xffff0000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PARTIES_SHIFT:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PHASE_SHIFT:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPINS_PER_ARRIVAL:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TERMINATION_BIT:J": {"value": "-0x8000000000000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNARRIVED_MASK:I": {"value": "0xffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evenQ:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oddQ:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/concurrent/Phaser;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root:Ljava/util/concurrent/Phaser;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Phaser;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Phaser;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "abortWait(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrivedOf(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badArrive(J)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "badRegister(J)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doArrive(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doRegister(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalAwaitAdvance(ILjava/util/concurrent/Phaser$QNode;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "partiesOf(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "phaseOf(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reconcileState()J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "releaseWaiters(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stateToString(J)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unarrivedOf(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrive()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arriveAndAwaitAdvance()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arriveAndDeregister()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitAdvance(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitAdvanceInterruptibly(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitAdvanceInterruptibly(IJLjava/util/concurrent/TimeUnit;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRegister(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forceTermination()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getArrivedParties()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/util/concurrent/Phaser;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPhase()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRegisteredParties()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoot()Ljava/util/concurrent/Phaser;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnarrivedParties()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onAdvance(II)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/PriorityBlockingQueue$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/PriorityBlockingQueue$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Collection;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/PriorityBlockingQueue$Itr;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/PriorityBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/PriorityBlockingQueue;[Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/PriorityBlockingQueue$PBQSpliterator;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/PriorityBlockingQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/PriorityBlockingQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/PriorityBlockingQueue;[Ljava/lang/Object;II)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFence()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/PriorityBlockingQueue$PBQSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/PriorityBlockingQueue;": {"fields": {"ALLOCATIONSPINLOCK:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_INITIAL_CAPACITY:I": {"value": "0xb", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:I": {"value": "0x7ffffff7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x4da73f88e6712814L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "allocationSpinLock:I": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "notEmpty:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "q:Ljava/util/PriorityQueue;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/Comparator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/Collection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bulkRemove(Ljava/util/function/Predicate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dequeue()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "ensureNonEmpty([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "heapify()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isClear([JI)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$removeAll$0(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$retainAll$1(Ljava/util/Collection;Ljava/lang/Object;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nBits(I)[J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "removeAt(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setBit([JI)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "siftDownComparable(ILjava/lang/Object;[Ljava/lang/Object;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftDownUsingComparator(ILjava/lang/Object;[Ljava/lang/Object;ILjava/util/Comparator;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUpComparable(ILjava/lang/Object;[Ljava/lang/Object;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUpUsingComparator(ILjava/lang/Object;[Ljava/lang/Object;Ljava/util/Comparator;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryGrow([Ljava/lang/Object;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "comparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeEq(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeIf(Ljava/util/function/Predicate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RecursiveAction;": {"fields": {"serialVersionUID:J": {"value": "0x489d6925990753ceL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RecursiveTask;": {"fields": {"serialVersionUID:J": {"value": "0x489d692599075496L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compute()Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exec()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RejectedExecutionException;": {"fields": {"serialVersionUID:J": {"value": "-0x537214ba9ff4969L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RejectedExecutionHandler;": {"fields": {}, "methods": {"rejectedExecution(Ljava/lang/Runnable;Ljava/util/concurrent/ThreadPoolExecutor;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RunnableFuture;": {"fields": {}, "methods": {"run()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/RunnableScheduledFuture;": {"fields": {}, "methods": {"isPeriodic()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ScheduledExecutorService;": {"fields": {}, "methods": {"schedule(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleAtFixedRate(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleWithFixedDelay(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ScheduledFuture;": {"fields": {}, "methods": {}}, "Ljava/util/concurrent/ScheduledThreadPoolExecutor$DelayedWorkQueue$Itr;": {"fields": {"array:[Ljava/util/concurrent/RunnableScheduledFuture;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cursor:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastRet:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ScheduledThreadPoolExecutor$DelayedWorkQueue;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ScheduledThreadPoolExecutor$DelayedWorkQueue;[Ljava/util/concurrent/RunnableScheduledFuture;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Runnable;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ScheduledThreadPoolExecutor$DelayedWorkQueue;": {"fields": {"INITIAL_CAPACITY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "leader:Ljava/lang/Thread;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:[Ljava/util/concurrent/RunnableScheduledFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finishPoll(Ljava/util/concurrent/RunnableScheduledFuture;)Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "grow()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexOf(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setIndex(Ljava/util/concurrent/RunnableScheduledFuture;I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftDown(ILjava/util/concurrent/RunnableScheduledFuture;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "siftUp(ILjava/util/concurrent/RunnableScheduledFuture;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Runnable;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Runnable;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offer(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peek()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;": {"fields": {"heapIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "outerTask:Ljava/util/concurrent/RunnableScheduledFuture;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "period:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sequenceNumber:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ScheduledThreadPoolExecutor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "time:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ScheduledThreadPoolExecutor;Ljava/lang/Runnable;Ljava/lang/Object;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ScheduledThreadPoolExecutor;Ljava/lang/Runnable;Ljava/lang/Object;JJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/ScheduledThreadPoolExecutor;Ljava/util/concurrent/Callable;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNextRunTime()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/util/concurrent/Delayed;)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDelay(Ljava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isPeriodic()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ScheduledThreadPoolExecutor;": {"fields": {"DEFAULT_KEEPALIVE_MILLIS:J": {"value": "0xaL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sequencer:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "continueExistingPeriodicTasksAfterShutdown:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "executeExistingDelayedTasksAfterShutdown:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeOnCancel:Z": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/concurrent/RejectedExecutionHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/concurrent/ThreadFactory;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ILjava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delayedExecute(Ljava/util/concurrent/RunnableScheduledFuture;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "overflowFree(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "triggerTime(JLjava/util/concurrent/TimeUnit;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canRunInCurrentRunState(Ljava/util/concurrent/RunnableScheduledFuture;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decorateTask(Ljava/lang/Runnable;Ljava/util/concurrent/RunnableScheduledFuture;)Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decorateTask(Ljava/util/concurrent/Callable;Ljava/util/concurrent/RunnableScheduledFuture;)Ljava/util/concurrent/RunnableScheduledFuture;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContinueExistingPeriodicTasksAfterShutdownPolicy()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExecuteExistingDelayedTasksAfterShutdownPolicy()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueue()Ljava/util/concurrent/BlockingQueue;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoveOnCancelPolicy()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onShutdown()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reExecutePeriodic(Ljava/util/concurrent/RunnableScheduledFuture;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "schedule(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "schedule(Ljava/util/concurrent/Callable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleAtFixedRate(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "scheduleWithFixedDelay(Ljava/lang/Runnable;JJLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/ScheduledFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setContinueExistingPeriodicTasksAfterShutdownPolicy(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExecuteExistingDelayedTasksAfterShutdownPolicy(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRemoveOnCancelPolicy(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdown()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "triggerTime(J)J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/Semaphore$FairSync;": {"fields": {"serialVersionUID:J": {"value": "0x1bf45e7bb79d96b0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquireShared(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Semaphore$NonfairSync;": {"fields": {"serialVersionUID:J": {"value": "-0x2563a9c95ee9771aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquireShared(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Semaphore$Sync;": {"fields": {"serialVersionUID:J": {"value": "0x108c7583c161b715L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "drainPermits()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPermits()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nonfairTryAcquireShared(I)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reducePermits(I)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryReleaseShared(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/Semaphore;": {"fields": {"serialVersionUID:J": {"value": "-0x2cb8e63801765912L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sync:Ljava/util/concurrent/Semaphore$Sync;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquire()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquire(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireUninterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireUninterruptibly(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "availablePermits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainPermits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueueLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedThreads()Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThreads()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFair()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reducePermits(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquire()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquire(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquire(IJLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquire(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/SubmissionPublisher$ConsumerSubscriber$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/concurrent/Flow$Subscription;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/Flow$Subscription;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;": {"fields": {"ACTIVE:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CLOSED:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMPLETE:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CTL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEMAND:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ERROR:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INTERRUPTED:J": {"value": "-0x1L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OPEN:I": {"value": "0x40", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REQS:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RUN:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "array:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ctl:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "demand:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "head:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxCapacity:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextRetry:Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onNextHandler:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pendingError:Ljava/lang/Throwable;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subscriber:Ljava/util/concurrent/Flow$Subscriber;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tail:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "waiter:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "waiting:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/concurrent/Flow$Subscriber;Ljava/util/concurrent/Executor;Ljava/util/function/BiConsumer;[Ljava/lang/Object;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitSpace(J)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "block()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancel()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "casDemand(JJ)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeOnComplete(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeOnError(Ljava/util/concurrent/Flow$Subscriber;Ljava/lang/Throwable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "consume()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "consumeComplete(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "consumeError(Ljava/util/concurrent/Flow$Subscriber;Ljava/lang/Throwable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "consumeNext(Ljava/util/concurrent/Flow$Subscriber;Ljava/lang/Object;)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "consumeSubscribe(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "estimateLag()I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndBitwiseOrCtl(I)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "growAndOffer(Ljava/lang/Object;[Ljava/lang/Object;I)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "handleOnNext(Ljava/util/concurrent/Flow$Subscriber;Ljava/lang/Throwable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClosed()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReleasable()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;Z)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onComplete()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onError(Ljava/lang/Throwable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onSubscribe()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "request(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retryOffer(Ljava/lang/Object;)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signalWaiter()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startOnOffer(I)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startOnSignal(I)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subscribeOnOpen(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtractDemand(I)J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "takeItems(Ljava/util/concurrent/Flow$Subscriber;JI)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryStart()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "weakCasCtl(II)Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SubmissionPublisher$ConsumerSubscriber;": {"fields": {"consumer:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "status:Ljava/util/concurrent/CompletableFuture;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subscription:Ljava/util/concurrent/Flow$Subscription;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$onSubscribe$0(Ljava/util/concurrent/Flow$Subscription;Ljava/lang/Void;Ljava/lang/Throwable;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onComplete()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onError(Ljava/lang/Throwable;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onNext(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onSubscribe(Ljava/util/concurrent/Flow$Subscription;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/SubmissionPublisher$ConsumerTask;": {"fields": {"consumer:Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exec()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRawResult()Ljava/lang/Void;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRawResult(Ljava/lang/Void;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SubmissionPublisher$ThreadPerTaskExecutor;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/SubmissionPublisher;": {"fields": {"ASYNC_POOL:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BUFFER_CAPACITY_LIMIT:I": {"value": "0x40000000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INITIAL_CAPACITY:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clients:Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closedException:Ljava/lang/Throwable;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/Executor;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxBufferCapacity:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onNextHandler:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "owner:Ljava/lang/Thread;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subscribed:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Executor;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/concurrent/Executor;ILjava/util/function/BiConsumer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cleanAndCount()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doOffer(Ljava/lang/Object;JLjava/util/function/BiPredicate;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retryOffer(Ljava/lang/Object;JLjava/util/function/BiPredicate;Ljava/util/concurrent/SubmissionPublisher$BufferedSubscription;IZ)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "roundCapacity(I)I": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeExceptionally(Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "consume(Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateMaximumLag()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateMinimumDemand()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClosedException()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExecutor()Ljava/util/concurrent/Executor;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxBufferCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNumberOfSubscribers()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubscribers()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasSubscribers()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSubscribed(Ljava/util/concurrent/Flow$Subscriber;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;Ljava/util/function/BiPredicate;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;Ljava/util/function/BiPredicate;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "submit(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subscribe(Ljava/util/concurrent/Flow$Subscriber;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/SynchronousQueue$FifoWaitQueue;": {"fields": {"serialVersionUID:J": {"value": "-0x3247e27356cbc166L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$LifoWaitQueue;": {"fields": {"serialVersionUID:J": {"value": "-0x326b6965c68cc166L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;": {"fields": {"QITEM:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QNEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isData:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "item:Ljava/lang/Object;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waiter:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casItem(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casNext(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCancelled()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isOffList()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCancel(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$TransferQueue;": {"fields": {"QCLEANME:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QHEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QTAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanMe:Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advanceHead(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advanceTail(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "awaitFulfill(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casCleanMe(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clean(Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;Ljava/util/concurrent/SynchronousQueue$TransferQueue$QNode;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transfer(Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"fields": {"SMATCH:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SNEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "item:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match:Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mode:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waiter:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casNext(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCancelled()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCancel()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryMatch(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$TransferStack;": {"fields": {"DATA:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FULFILLING:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REQUEST:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isFulfilling(I)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "snode(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;Ljava/lang/Object;Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;I)Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "awaitFulfill(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;ZJ)Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casHead(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clean(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shouldSpin(Ljava/util/concurrent/SynchronousQueue$TransferStack$SNode;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transfer(Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$Transferer;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transfer(Ljava/lang/Object;ZJ)Ljava/lang/Object;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue$WaitQueue;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/SynchronousQueue;": {"fields": {"MAX_TIMED_SPINS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_UNTIMED_SPINS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPIN_FOR_TIMEOUT_THRESHOLD:J": {"value": "0x3e8L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2cbacc91e0a3c166L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "qlock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferer:Ljava/util/concurrent/SynchronousQueue$Transferer;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waitingConsumers:Ljava/util/concurrent/SynchronousQueue$WaitQueue;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waitingProducers:Ljava/util/concurrent/SynchronousQueue$WaitQueue;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drainTo(Ljava/util/Collection;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remainingCapacity()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "take()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ThreadFactory;": {"fields": {}, "methods": {"newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ThreadLocalRandom$RandomDoublesSpliterator;": {"fields": {"bound:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:D": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JJDD)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ThreadLocalRandom$RandomDoublesSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadLocalRandom$RandomIntsSpliterator;": {"fields": {"bound:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JJII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ThreadLocalRandom$RandomIntsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadLocalRandom$RandomLongsSpliterator;": {"fields": {"bound:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "origin:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/concurrent/ThreadLocalRandom$RandomLongsSpliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadLocalRandom;": {"fields": {"BAD_BOUND:Ljava/lang/String;": {"value": "\"bound must be positive\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BAD_RANGE:Ljava/lang/String;": {"value": "\"bound must be greater than origin\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BAD_SIZE:Ljava/lang/String;": {"value": "\"size must be non-negative\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOUBLE_UNIT:D": {"value": "1.1102230246251565E-16", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLOAT_UNIT:F": {"value": "5.9604645E-8f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GAMMA:J": {"value": "-0x61c8864680b583ebL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INHERITABLETHREADLOCALS:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHERITEDACCESSCONTROLCONTEXT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROBE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PROBE_INCREMENT:I": {"value": "-0x61c88647", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDARY:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEEDER_INCREMENT:J": {"value": "-0x4498517a7b3558c5L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THREADLOCALS:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instance:Ljava/util/concurrent/ThreadLocalRandom;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextLocalGaussian:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "probeGenerator:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "seeder:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x5135b0e98579898dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advanceProbe(I)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current()Ljava/util/concurrent/ThreadLocalRandom;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eraseThreadLocals(Ljava/lang/Thread;)V": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProbe()I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localInit()V": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mix32(J)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mix64(J)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextSecondarySeed()I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "setInheritedAccessControlContext(Ljava/lang/Thread;Ljava/security/AccessControlContext;)V": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "doubles()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(DD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubles(JDD)Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "internalNextDouble(DD)D": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextInt(II)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "internalNextLong(JJ)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ints()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(II)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(J)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ints(JII)Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(J)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longs(JJJ)Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextBoolean()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble(D)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble(DD)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextFloat()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextGaussian()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt(II)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong(JJ)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextSeed()J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setSeed(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ThreadPoolExecutor$AbortPolicy;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rejectedExecution(Ljava/lang/Runnable;Ljava/util/concurrent/ThreadPoolExecutor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ThreadPoolExecutor$CallerRunsPolicy;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rejectedExecution(Ljava/lang/Runnable;Ljava/util/concurrent/ThreadPoolExecutor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/ThreadPoolExecutor$DiscardOldestPolicy;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rejectedExecution(Ljava/lang/Runnable;Ljava/util/concurrent/ThreadPoolExecutor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/TimeUnit$1;": {"fields": {"$SwitchMap$java$time$temporal$ChronoUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$java$util$concurrent$TimeUnit:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadPoolExecutor;": {"fields": {"COUNT_BITS:I": {"value": "0x1d", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "COUNT_MASK:I": {"value": "0x1fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_ONE:Z": {"value": "true", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RUNNING:I": {"value": "-0x20000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHUTDOWN:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STOP:I": {"value": "0x20000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TERMINATED:I": {"value": "0x60000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TIDYING:I": {"value": "0x40000000", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultHandler:Ljava/util/concurrent/RejectedExecutionHandler;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "shutdownPerm:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allowCoreThreadTimeOut:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "completedTaskCount:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "corePoolSize:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctl:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "handler:Ljava/util/concurrent/RejectedExecutionHandler;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keepAliveTime:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "largestPoolSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mainLock:Ljava/util/concurrent/locks/ReentrantLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "maximumPoolSize:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "termination:Ljava/util/concurrent/locks/Condition;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadFactory:Ljava/util/concurrent/ThreadFactory;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workQueue:Ljava/util/concurrent/BlockingQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workers:Ljava/util/HashSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/RejectedExecutionHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addWorker(Ljava/lang/Runnable;Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addWorkerFailed(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advanceRunState(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkShutdownAccess()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndDecrementWorkerCount(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndIncrementWorkerCount(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctlOf(II)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decrementWorkerCount()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "drainQueue()Ljava/util/List;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTask()Ljava/lang/Runnable;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptIdleWorkers()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptIdleWorkers(Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "interruptWorkers()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isRunning(I)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processWorkerExit(Ljava/util/concurrent/ThreadPoolExecutor$Worker;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runStateAtLeast(II)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runStateLessThan(II)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "runStateOf(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workerCountOf(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "afterExecute(Ljava/lang/Runnable;Ljava/lang/Throwable;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allowCoreThreadTimeOut(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allowsCoreThreadTimeOut()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "beforeExecute(Ljava/lang/Thread;Ljava/lang/Runnable;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensurePrestart()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getActiveCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCompletedTaskCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCorePoolSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeepAliveTime(Ljava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLargestPoolSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximumPoolSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPoolSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueue()Ljava/util/concurrent/BlockingQueue;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRejectedExecutionHandler()Ljava/util/concurrent/RejectedExecutionHandler;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTaskCount()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThreadFactory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isStopped()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTerminated()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminating()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onShutdown()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prestartAllCoreThreads()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prestartCoreThread()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "purge()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reject(Ljava/lang/Runnable;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/Runnable;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCorePoolSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setKeepAliveTime(JLjava/util/concurrent/TimeUnit;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaximumPoolSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRejectedExecutionHandler(Ljava/util/concurrent/RejectedExecutionHandler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setThreadFactory(Ljava/util/concurrent/ThreadFactory;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdown()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownNow()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "terminated()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryTerminate()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadPoolExecutor$Worker;": {"fields": {"serialVersionUID:J": {"value": "0x552f9a9a47f02c71L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "completedTasks:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstTask:Ljava/lang/Runnable;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/ThreadPoolExecutor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ThreadPoolExecutor;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interruptIfStarted()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isHeldExclusively()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLocked()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquire(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryRelease(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/ThreadPoolExecutor$DiscardPolicy;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rejectedExecution(Ljava/lang/Runnable;Ljava/util/concurrent/ThreadPoolExecutor;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/TimeUnit;": {"fields": {"$VALUES:[Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DAYS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DAY_SCALE:J": {"value": "0x4e94914f0000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HOURS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HOUR_SCALE:J": {"value": "0x34630b8a000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MICROSECONDS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MICRO_SCALE:J": {"value": "0x3e8L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MILLISECONDS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MILLI_SCALE:J": {"value": "0xf4240L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MINUTES:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MINUTE_SCALE:J": {"value": "0xdf8475800L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NANOSECONDS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NANO_SCALE:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECONDS:Ljava/util/concurrent/TimeUnit;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECOND_SCALE:J": {"value": "0x3b9aca00L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxMicros:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxMillis:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxNanos:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxSecs:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "microRatio:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "milliRatio:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scale:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "secRatio:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IJ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cvt(JJJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "excessNanos(JJ)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/time/temporal/ChronoUnit;)Ljava/util/concurrent/TimeUnit;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueOf(Ljava/lang/String;)Ljava/util/concurrent/TimeUnit;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/util/concurrent/TimeUnit;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "convert(JLjava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "convert(Ljava/time/Duration;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sleep(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "timedJoin(Ljava/lang/Thread;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "timedWait(Ljava/lang/Object;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toChronoUnit()Ljava/time/temporal/ChronoUnit;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toDays(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHours(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMicros(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMillis(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMinutes(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toNanos(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSeconds(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/TimeoutException;": {"fields": {"serialVersionUID:J": {"value": "0x1a6172bddbe4f56aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/TransferQueue;": {"fields": {}, "methods": {"getWaitingConsumerCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaitingConsumer()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transfer(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryTransfer(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryTransfer(Ljava/lang/Object;JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicBoolean;": {"fields": {"VALUE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x4098b70a4f3ffc33L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Z)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(ZZ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicIntegerArray;": {"fields": {"AA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x27b857513300bd8bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(IILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(III)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(III)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(III)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(IILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(ILjava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(II)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(II)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(II)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(II)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(II)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(ILjava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(III)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicInteger;": {"fields": {"VALUE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x563f5ecc8c6c168aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl;": {"fields": {"U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheck(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSamePackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwAccessCheckException(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAndGet(Ljava/lang/Object;I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(Ljava/lang/Object;I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;II)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newUpdater(Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(Ljava/lang/Object;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(Ljava/lang/Object;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;II)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(Ljava/lang/Object;ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(Ljava/lang/Object;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/lang/Object;Ljava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/lang/Object;Ljava/util/function/IntUnaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;II)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicLong;": {"fields": {"VALUE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VM_SUPPORTS_LONG_CAS:Z": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x1ac0fab477001718L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "VMSupportsCS8()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accumulateAndGet(JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicLongArray;": {"fields": {"AA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x200931f59d1d4008L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(IJLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(IJ)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(IJJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(IJJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(IJJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(IJLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(IJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(IJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(ILjava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(IJ)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(IJ)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(IJ)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(IJ)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(IJ)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(ILjava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(IJJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicLongFieldUpdater$CASUpdater;": {"fields": {"U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheck(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwAccessCheckException(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addAndGet(Ljava/lang/Object;J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(Ljava/lang/Object;J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicLongFieldUpdater$LockedUpdater;": {"fields": {"U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheck(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheckException(Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicLongFieldUpdater;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSamePackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newUpdater(Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicLongFieldUpdater;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(Ljava/lang/Object;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAndGet(Ljava/lang/Object;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrementAndGet(Ljava/lang/Object;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(Ljava/lang/Object;JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAdd(Ljava/lang/Object;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndDecrement(Ljava/lang/Object;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndIncrement(Ljava/lang/Object;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/lang/Object;Ljava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "incrementAndGet(Ljava/lang/Object;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/lang/Object;Ljava/util/function/LongUnaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;JJ)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicMarkableReference$Pair;": {"fields": {"mark:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reference:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/lang/Object;Z)Ljava/util/concurrent/atomic/AtomicMarkableReference$Pair;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/AtomicMarkableReference;": {"fields": {"PAIR:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pair:Ljava/util/concurrent/atomic/AtomicMarkableReference$Pair;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "casPair(Ljava/util/concurrent/atomic/AtomicMarkableReference$Pair;Ljava/util/concurrent/atomic/AtomicMarkableReference$Pair;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "attemptMark(Ljava/lang/Object;Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;Ljava/lang/Object;ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([Z)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReference()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isMarked()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;Ljava/lang/Object;ZZ)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicReference;": {"fields": {"VALUE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x19a88e2baa87ab3aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicReferenceArray$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicReferenceArray;": {"fields": {"AA:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x562d215e419a9ff4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$readObject$0()Ljava/lang/reflect/Field;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "accumulateAndGet(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchange(ILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeAcquire(ILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndExchangeRelease(ILjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcquire(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(ILjava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(ILjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(ILjava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpaque(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlain(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(ILjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(ILjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOpaque(ILjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPlain(ILjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRelease(ILjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(ILjava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetAcquire(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetPlain(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetRelease(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSetVolatile(ILjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl;": {"fields": {"U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vclass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheck(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSamePackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwAccessCheckException(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwCCE()V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueCheck(Ljava/lang/Object;)V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSet(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newUpdater(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicReferenceFieldUpdater;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulateAndGet(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndAccumulate(Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndSet(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAndUpdate(Ljava/lang/Object;Ljava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySet(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAndGet(Ljava/lang/Object;Ljava/util/function/UnaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/AtomicStampedReference$Pair;": {"fields": {"reference:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stamp:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "of(Ljava/lang/Object;I)Ljava/util/concurrent/atomic/AtomicStampedReference$Pair;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/AtomicStampedReference;": {"fields": {"PAIR:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pair:Ljava/util/concurrent/atomic/AtomicStampedReference$Pair;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "casPair(Ljava/util/concurrent/atomic/AtomicStampedReference$Pair;Ljava/util/concurrent/atomic/AtomicStampedReference$Pair;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "attemptStamp(Ljava/lang/Object;I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareAndSet(Ljava/lang/Object;Ljava/lang/Object;II)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get([I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReference()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStamp()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "weakCompareAndSet(Ljava/lang/Object;Ljava/lang/Object;II)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/DoubleAccumulator$SerializationProxy;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "function:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(DLjava/util/function/DoubleBinaryOperator;J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/DoubleAccumulator;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "function:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleBinaryOperator;D)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "accumulate(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThenReset()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/DoubleAdder$SerializationProxy;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/atomic/DoubleAdder;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/LongAccumulator$SerializationProxy;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "function:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/LongBinaryOperator;J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/DoubleAdder;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sumThenReset()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/LongAccumulator;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "function:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identity:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongBinaryOperator;J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "accumulate(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThenReset()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/LongAdder$SerializationProxy;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/atomic/LongAdder;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/LongAdder;": {"fields": {"serialVersionUID:J": {"value": "0x6499de12a37d0a3dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "decrement()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "increment()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sumThenReset()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/atomic/Striped64$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/invoke/MethodHandles$Lookup;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/Striped64$Cell;": {"fields": {"VALUE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:J": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cas(JJ)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAndSet(J)J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reset(J)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/atomic/Striped64;": {"fields": {"BASE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CELLSBUSY:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NCPU:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THREAD_PROBE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base:J": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cells:[Ljava/util/concurrent/atomic/Striped64$Cell;": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cellsBusy:I": {"value": null, "other": [".field", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "advanceProbe(I)I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "apply(Ljava/util/function/DoubleBinaryOperator;JD)J": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getProbe()I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casBase(JJ)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casCellsBusy()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubleAccumulate(DLjava/util/function/DoubleBinaryOperator;Z)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAndSetBase(J)J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longAccumulate(JLjava/util/function/LongBinaryOperator;Z)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/AbstractOwnableSynchronizer;": {"fields": {"serialVersionUID:J": {"value": "0x33dfafb9ad6d6fa9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "exclusiveOwnerThread:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExclusiveOwnerThread()Ljava/lang/Thread;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExclusiveOwnerThread(Ljava/lang/Thread;)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer;": {"fields": {"HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPIN_FOR_TIMEOUT_THRESHOLD:J": {"value": "0x3e8L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6655a843753f52e4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addWaiter(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelAcquire(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetTail(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireInterruptibly(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireNanos(JJ)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireShared(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireSharedInterruptibly(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireSharedNanos(JJ)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doReleaseShared()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enq(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findNodeFromTail(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullGetFirstQueuedThread()Ljava/lang/Thread;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeSyncQueue()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parkAndCheckInterrupt()Z": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "selfInterrupt()V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setHead(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setHeadAndPropagate(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shouldParkAfterFailedAcquire(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unparkSuccessor(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquire(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireInterruptibly(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireQueued(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;J)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquireShared(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireSharedInterruptibly(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apparentlyFirstQueuedIsExclusive()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetState(JJ)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fullyRelease(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExclusiveQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirstQueuedThread()Ljava/lang/Thread;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueueLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSharedQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getState()J": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasContended()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedPredecessors()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThreads()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHeldExclusively()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOnSyncQueue(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isQueued(Ljava/lang/Thread;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "owns(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release(J)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "releaseShared(J)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setState(J)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferAfterCancelledWait(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferForSignal(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquire(J)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireNanos(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireShared(J)J": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireSharedNanos(JJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryRelease(J)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReleaseShared(J)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;": {"fields": {"REINTERRUPT:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THROW_IE:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x104ad505855c6aebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "firstWaiter:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastWaiter:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addConditionWaiter()Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInterruptWhileWaiting(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSignal(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSignalAll(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reportInterruptAfterWait(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkCancelledWaiters()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "await()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitNanos(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUninterruptibly()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUntil(Ljava/util/Date;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength()I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads()Ljava/util/Collection;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOwnedBy(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signal()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signalAll()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;": {"fields": {"REINTERRUPT:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THROW_IE:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x104ad505855c6aebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "firstWaiter:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastWaiter:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addConditionWaiter()Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkInterruptWhileWaiting(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSignal(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSignalAll(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reportInterruptAfterWait(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlinkCancelledWaiters()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "await()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitNanos(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUninterruptibly()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUntil(Ljava/util/Date;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength()I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads()Ljava/util/Collection;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOwnedBy(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signal()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signalAll()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"fields": {"CANCELLED:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CONDITION:I": {"value": "-0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EXCLUSIVE:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREV:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPAGATE:I": {"value": "-0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHARED:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIGNAL:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "THREAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WAITSTATUS:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextWaiter:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "waitStatus:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetNext(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetWaitStatus(II)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isShared()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "predecessor()Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setPrevRelaxed(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/AbstractQueuedSynchronizer;": {"fields": {"HEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPIN_FOR_TIMEOUT_THRESHOLD:J": {"value": "0x3e8L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6655a843753f52e3L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "head:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tail:Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addWaiter(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelAcquire(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetTail(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireInterruptibly(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireNanos(IJ)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireShared(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireSharedInterruptibly(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAcquireSharedNanos(IJ)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doReleaseShared()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enq(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findNodeFromTail(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullGetFirstQueuedThread()Ljava/lang/Thread;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeSyncQueue()V": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parkAndCheckInterrupt()Z": {"other": [".method", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "selfInterrupt()V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setHead(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setHeadAndPropagate(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shouldParkAfterFailedAcquire(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unparkSuccessor(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquire(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireInterruptibly(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireQueued(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;I)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquireShared(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireSharedInterruptibly(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apparentlyFirstQueuedIsExclusive()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compareAndSetState(II)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fullyRelease(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExclusiveQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFirstQueuedThread()Ljava/lang/Thread;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueueLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSharedQueuedThreads()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getState()I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;)Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasContended()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedPredecessors()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThreads()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHeldExclusively()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOnSyncQueue(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isQueued(Ljava/lang/Thread;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "owns(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "releaseShared(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setState(I)V": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferAfterCancelledWait(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transferForSignal(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquire(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireNanos(IJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireShared(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireSharedNanos(IJ)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryRelease(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReleaseShared(I)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/Condition;": {"fields": {}, "methods": {"await()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "await(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitNanos(J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUninterruptibly()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "awaitUntil(Ljava/util/Date;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signal()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signalAll()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/Lock;": {"fields": {}, "methods": {"lock()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/LockSupport;": {"fields": {"PARKBLOCKER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SECONDARY:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TID:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBlocker(Ljava/lang/Thread;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThreadId(Ljava/lang/Thread;)J": {"other": [".method", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextSecondarySeed()I": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "park()V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "park(Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parkNanos(J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parkNanos(Ljava/lang/Object;J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parkUntil(J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parkUntil(Ljava/lang/Object;J)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlocker(Ljava/lang/Thread;Ljava/lang/Object;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unpark(Ljava/lang/Thread;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReadWriteLock;": {"fields": {}, "methods": {"readLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantLock$FairSync;": {"fields": {"serialVersionUID:J": {"value": "-0x29a554bceb4b42ecL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquire(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantLock$NonfairSync;": {"fields": {"serialVersionUID:J": {"value": "0x658832e7537bbf0bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquire(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantLock$Sync;": {"fields": {"serialVersionUID:J": {"value": "-0x47e15d6b55bba584L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getHoldCount()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOwner()Ljava/lang/Thread;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isHeldExclusively()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLocked()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newCondition()Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nonfairTryAcquire(I)Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryRelease(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantLock;": {"fields": {"serialVersionUID:J": {"value": "0x6655a82c2cc86aebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sync:Ljava/util/concurrent/locks/ReentrantLock$Sync;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHoldCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOwner()Ljava/lang/Thread;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueueLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedThreads()Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength(Ljava/util/concurrent/locks/Condition;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads(Ljava/util/concurrent/locks/Condition;)Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThread(Ljava/lang/Thread;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThreads()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters(Ljava/util/concurrent/locks/Condition;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFair()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHeldByCurrentThread()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLocked()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$FairSync;": {"fields": {"serialVersionUID:J": {"value": "-0x1f926431bed278ebL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readerShouldBlock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writerShouldBlock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync;": {"fields": {"serialVersionUID:J": {"value": "-0x713cd03170e2fc9dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readerShouldBlock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writerShouldBlock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock;": {"fields": {"serialVersionUID:J": {"value": "-0x5329744b67e697b4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sync:Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/ReentrantReadWriteLock;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter;": {"fields": {"count:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tid:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync;": {"fields": {"EXCLUSIVE_MASK:I": {"value": "0xffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_COUNT:I": {"value": "0xffff", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHARED_SHIFT:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHARED_UNIT:I": {"value": "0x10000", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x57ace0c53f412bb9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "cachedHoldCounter:Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstReader:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstReaderHoldCount:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readHolds:Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exclusiveCount(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sharedCount(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unmatchedUnlockException()Ljava/lang/IllegalMonitorStateException;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fullTryAcquireShared(Ljava/lang/Thread;)I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCount()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOwner()Ljava/lang/Thread;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getReadHoldCount()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getReadLockCount()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getWriteHoldCount()I": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isHeldExclusively()Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWriteLocked()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newCondition()Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readerShouldBlock()Z": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAcquire(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAcquireShared(I)I": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReadLock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryRelease(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReleaseShared(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryWriteLock()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writerShouldBlock()Z": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock$WriteLock;": {"fields": {"serialVersionUID:J": {"value": "-0x4548bd97c08297b4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sync:Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/ReentrantReadWriteLock;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHoldCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHeldByCurrentThread()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/ReentrantReadWriteLock;": {"fields": {"serialVersionUID:J": {"value": "-0x610a2aff0f4a97b4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readerLock:Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sync:Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writerLock:Ljava/util/concurrent/locks/ReentrantReadWriteLock$WriteLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOwner()Ljava/lang/Thread;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueueLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedReaderThreads()Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedThreads()Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueuedWriterThreads()Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReadHoldCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReadLockCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitQueueLength(Ljava/util/concurrent/locks/Condition;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWaitingThreads(Ljava/util/concurrent/locks/Condition;)Ljava/util/Collection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWriteHoldCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThread(Ljava/lang/Thread;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasQueuedThreads()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasWaiters(Ljava/util/concurrent/locks/Condition;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isFair()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWriteLocked()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWriteLockedByCurrentThread()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLock()Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLock()Ljava/util/concurrent/locks/ReentrantReadWriteLock$WriteLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/StampedLock$ReadLockView;": {"fields": {"this$0:Ljava/util/concurrent/locks/StampedLock;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/StampedLock;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/StampedLock$ReadWriteLockView;": {"fields": {"this$0:Ljava/util/concurrent/locks/StampedLock;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/StampedLock;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/StampedLock$WNode;": {"fields": {"cowait:Ljava/util/concurrent/locks/StampedLock$WNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mode:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Ljava/util/concurrent/locks/StampedLock$WNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Ljava/util/concurrent/locks/StampedLock$WNode;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "status:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thread:Ljava/lang/Thread;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(ILjava/util/concurrent/locks/StampedLock$WNode;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/concurrent/locks/StampedLock$WriteLockView;": {"fields": {"this$0:Ljava/util/concurrent/locks/StampedLock;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/locks/StampedLock;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lockInterruptibly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newCondition()Ljava/util/concurrent/locks/Condition;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/concurrent/locks/StampedLock;": {"fields": {"ABITS:J": {"value": "0xffL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CANCELLED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "HEAD_SPINS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INTERRUPTED:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LG_READERS:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_HEAD_SPINS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NCPU:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ORIGIN:J": {"value": "0x100L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OVERFLOW_YIELD_RATE:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RBITS:J": {"value": "0x7fL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFULL:J": {"value": "0x7eL", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RMODE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RUNIT:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SBITS:J": {"value": "-0x80L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPINS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STATE:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WAITING:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WBIT:J": {"value": "0x80L", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WCOWAIT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WHEAD:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WMODE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "WNEXT:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WSTATUS:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WTAIL:Ljava/lang/invoke/VarHandle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x5349f9cce5385003L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "readLockView:Ljava/util/concurrent/locks/StampedLock$ReadLockView;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readWriteLockView:Ljava/util/concurrent/locks/StampedLock$ReadWriteLockView;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readerOverflow:I": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "state:J": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "whead:Ljava/util/concurrent/locks/StampedLock$WNode;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLockView:Ljava/util/concurrent/locks/StampedLock$WriteLockView;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wtail:Ljava/util/concurrent/locks/StampedLock$WNode;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acquireRead(ZJ)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acquireWrite(ZJ)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancelWaiter(Ljava/util/concurrent/locks/StampedLock$WNode;Ljava/util/concurrent/locks/StampedLock$WNode;Z)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "casState(JJ)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReadLockCount(J)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLockStamp(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOptimisticReadStamp(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadLockStamp(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWriteLockStamp(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "release(Ljava/util/concurrent/locks/StampedLock$WNode;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryDecReaderOverflow(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryIncReaderOverflow(J)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryWriteLock(J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlockWriteInternal(J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlockWriteState(J)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asReadLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asReadWriteLock()Ljava/util/concurrent/locks/ReadWriteLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asWriteLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReadLockCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadLocked()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWriteLocked()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLock()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLockInterruptibly()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryConvertToOptimisticRead(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryConvertToReadLock(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryConvertToWriteLock(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryOptimisticRead()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReadLock()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryReadLock(JLjava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryUnlockRead()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryUnlockWrite()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryWriteLock()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryWriteLock(JLjava/util/concurrent/TimeUnit;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlock(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlockRead(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unlockWrite(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unstampedUnlockRead()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unstampedUnlockWrite()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "validate(J)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLock()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeLockInterruptibly()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiConsumer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiConsumer;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andThen(Ljava/util/function/BiConsumer;)Ljava/util/function/BiConsumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiFunction$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiFunction;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiFunction;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "andThen(Ljava/util/function/Function;)Ljava/util/function/BiFunction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiPredicate$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiPredicate;": {"fields": {}, "methods": {"lambda$and$0(Ljava/util/function/BiPredicate;Ljava/util/function/BiPredicate;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$negate$1(Ljava/util/function/BiPredicate;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$or$2(Ljava/util/function/BiPredicate;Ljava/util/function/BiPredicate;Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "and(Ljava/util/function/BiPredicate;)Ljava/util/function/BiPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/util/function/BiPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/BiPredicate;)Ljava/util/function/BiPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "test(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiPredicate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiPredicate;Ljava/util/function/BiPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BiPredicate$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiPredicate;Ljava/util/function/BiPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BinaryOperator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BinaryOperator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Comparator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BinaryOperator;": {"fields": {}, "methods": {"lambda$maxBy$1(Ljava/util/Comparator;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$minBy$0(Ljava/util/Comparator;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxBy(Ljava/util/Comparator;)Ljava/util/function/BinaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minBy(Ljava/util/Comparator;)Ljava/util/function/BinaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/BooleanSupplier;": {"fields": {}, "methods": {"getAsBoolean()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Consumer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Consumer;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/lang/Object;)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andThen(Ljava/util/function/Consumer;)Ljava/util/function/Consumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleBinaryOperator;": {"fields": {}, "methods": {"applyAsDouble(DD)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleConsumer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleConsumer;Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleFunction;": {"fields": {}, "methods": {"apply(D)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleConsumer;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/DoubleConsumer;Ljava/util/function/DoubleConsumer;D)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andThen(Ljava/util/function/DoubleConsumer;)Ljava/util/function/DoubleConsumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoublePredicate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoublePredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(D)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoublePredicate$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoublePredicate;Ljava/util/function/DoublePredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(D)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoublePredicate$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoublePredicate;Ljava/util/function/DoublePredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(D)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleToIntFunction;": {"fields": {}, "methods": {"applyAsInt(D)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleSupplier;": {"fields": {}, "methods": {"getAsDouble()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoublePredicate;": {"fields": {}, "methods": {"lambda$and$0(Ljava/util/function/DoublePredicate;Ljava/util/function/DoublePredicate;D)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$negate$1(Ljava/util/function/DoublePredicate;D)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$or$2(Ljava/util/function/DoublePredicate;Ljava/util/function/DoublePredicate;D)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "and(Ljava/util/function/DoublePredicate;)Ljava/util/function/DoublePredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/util/function/DoublePredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/DoublePredicate;)Ljava/util/function/DoublePredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "test(D)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleUnaryOperator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleUnaryOperator;Ljava/util/function/DoubleUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(D)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleUnaryOperator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleUnaryOperator;Ljava/util/function/DoubleUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(D)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleUnaryOperator$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(D)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleToLongFunction;": {"fields": {}, "methods": {"applyAsLong(D)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Function$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Function$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/DoubleUnaryOperator;": {"fields": {}, "methods": {"identity()Ljava/util/function/DoubleUnaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$andThen$1(Ljava/util/function/DoubleUnaryOperator;Ljava/util/function/DoubleUnaryOperator;D)D": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$compose$0(Ljava/util/function/DoubleUnaryOperator;Ljava/util/function/DoubleUnaryOperator;D)D": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$identity$2(D)D": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "andThen(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/function/DoubleUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyAsDouble(D)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compose(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/function/DoubleUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntBinaryOperator;": {"fields": {}, "methods": {"applyAsInt(II)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Function;": {"fields": {}, "methods": {"identity()Ljava/util/function/Function;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$andThen$1(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$compose$0(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$identity$2(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "andThen(Ljava/util/function/Function;)Ljava/util/function/Function;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compose(Ljava/util/function/Function;)Ljava/util/function/Function;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntFunction;": {"fields": {}, "methods": {"apply(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Function$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntPredicate$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntConsumer;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/IntConsumer;Ljava/util/function/IntConsumer;I)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andThen(Ljava/util/function/IntConsumer;)Ljava/util/function/IntConsumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntConsumer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntConsumer;Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntPredicate$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntPredicate;Ljava/util/function/IntPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntPredicate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntPredicate;Ljava/util/function/IntPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(I)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntToDoubleFunction;": {"fields": {}, "methods": {"applyAsDouble(I)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntSupplier;": {"fields": {}, "methods": {"getAsInt()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntUnaryOperator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntUnaryOperator;Ljava/util/function/IntUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntPredicate;": {"fields": {}, "methods": {"lambda$and$0(Ljava/util/function/IntPredicate;Ljava/util/function/IntPredicate;I)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$negate$1(Ljava/util/function/IntPredicate;I)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$or$2(Ljava/util/function/IntPredicate;Ljava/util/function/IntPredicate;I)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "and(Ljava/util/function/IntPredicate;)Ljava/util/function/IntPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/util/function/IntPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/IntPredicate;)Ljava/util/function/IntPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "test(I)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntUnaryOperator$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntUnaryOperator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntUnaryOperator;Ljava/util/function/IntUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntToLongFunction;": {"fields": {}, "methods": {"applyAsLong(I)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/IntUnaryOperator;": {"fields": {}, "methods": {"identity()Ljava/util/function/IntUnaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$andThen$1(Ljava/util/function/IntUnaryOperator;Ljava/util/function/IntUnaryOperator;I)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$compose$0(Ljava/util/function/IntUnaryOperator;Ljava/util/function/IntUnaryOperator;I)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$identity$2(I)I": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "andThen(Ljava/util/function/IntUnaryOperator;)Ljava/util/function/IntUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyAsInt(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compose(Ljava/util/function/IntUnaryOperator;)Ljava/util/function/IntUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongConsumer;": {"fields": {}, "methods": {"lambda$andThen$0(Ljava/util/function/LongConsumer;Ljava/util/function/LongConsumer;J)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "andThen(Ljava/util/function/LongConsumer;)Ljava/util/function/LongConsumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongConsumer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongConsumer;Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongBinaryOperator;": {"fields": {}, "methods": {"applyAsLong(JJ)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongPredicate$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongPredicate;Ljava/util/function/LongPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(J)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongFunction;": {"fields": {}, "methods": {"apply(J)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongPredicate$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongPredicate;Ljava/util/function/LongPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(J)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongPredicate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(J)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongToDoubleFunction;": {"fields": {}, "methods": {"applyAsDouble(J)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongSupplier;": {"fields": {}, "methods": {"getAsLong()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongPredicate;": {"fields": {}, "methods": {"lambda$and$0(Ljava/util/function/LongPredicate;Ljava/util/function/LongPredicate;J)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$negate$1(Ljava/util/function/LongPredicate;J)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$or$2(Ljava/util/function/LongPredicate;Ljava/util/function/LongPredicate;J)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "and(Ljava/util/function/LongPredicate;)Ljava/util/function/LongPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/util/function/LongPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/LongPredicate;)Ljava/util/function/LongPredicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "test(J)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongUnaryOperator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongUnaryOperator;Ljava/util/function/LongUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongUnaryOperator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongUnaryOperator;Ljava/util/function/LongUnaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongUnaryOperator$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongToIntFunction;": {"fields": {}, "methods": {"applyAsInt(J)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/LongUnaryOperator;": {"fields": {}, "methods": {"identity()Ljava/util/function/LongUnaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$andThen$1(Ljava/util/function/LongUnaryOperator;Ljava/util/function/LongUnaryOperator;J)J": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$compose$0(Ljava/util/function/LongUnaryOperator;Ljava/util/function/LongUnaryOperator;J)J": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$identity$2(J)J": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "andThen(Ljava/util/function/LongUnaryOperator;)Ljava/util/function/LongUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "applyAsLong(J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compose(Ljava/util/function/LongUnaryOperator;)Ljava/util/function/LongUnaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ObjIntConsumer;": {"fields": {}, "methods": {"accept(Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ObjDoubleConsumer;": {"fields": {}, "methods": {"accept(Ljava/lang/Object;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ObjLongConsumer;": {"fields": {}, "methods": {"accept(Ljava/lang/Object;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Predicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Predicate;Ljava/util/function/Predicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Supplier;": {"fields": {}, "methods": {"get()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate;": {"fields": {}, "methods": {"isEqual(Ljava/lang/Object;)Ljava/util/function/Predicate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$and$0(Ljava/util/function/Predicate;Ljava/util/function/Predicate;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$isEqual$3(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$negate$1(Ljava/util/function/Predicate;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$or$2(Ljava/util/function/Predicate;Ljava/util/function/Predicate;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "not(Ljava/util/function/Predicate;)Ljava/util/function/Predicate;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "and(Ljava/util/function/Predicate;)Ljava/util/function/Predicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "negate()Ljava/util/function/Predicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "or(Ljava/util/function/Predicate;)Ljava/util/function/Predicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/Predicate$$ExternalSyntheticLambda4;": {"fields": {"f$0:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Predicate;Ljava/util/function/Predicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToIntBiFunction;": {"fields": {}, "methods": {"applyAsInt(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToDoubleFunction;": {"fields": {}, "methods": {"applyAsDouble(Ljava/lang/Object;)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToLongBiFunction;": {"fields": {}, "methods": {"applyAsLong(Ljava/lang/Object;Ljava/lang/Object;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToDoubleBiFunction;": {"fields": {}, "methods": {"applyAsDouble(Ljava/lang/Object;Ljava/lang/Object;)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/UnaryOperator$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToLongFunction;": {"fields": {}, "methods": {"applyAsLong(Ljava/lang/Object;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/ToIntFunction;": {"fields": {}, "methods": {"applyAsInt(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/function/UnaryOperator;": {"fields": {}, "methods": {"identity()Ljava/util/function/UnaryOperator;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$identity$0(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/Attributes$Name;": {"fields": {"CLASS_PATH:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONTENT_TYPE:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTENSION_INSTALLATION:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTENSION_LIST:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTENSION_NAME:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPLEMENTATION_TITLE:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPLEMENTATION_URL:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPLEMENTATION_VENDOR:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPLEMENTATION_VENDOR_ID:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IMPLEMENTATION_VERSION:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAIN_CLASS:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MANIFEST_VERSION:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SEALED:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SIGNATURE_VERSION:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPECIFICATION_TITLE:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPECIFICATION_VENDOR:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SPECIFICATION_VERSION:Ljava/util/jar/Attributes$Name;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAlpha(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDigit(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValid(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarFile$JarEntryIterator-IA;": {"fields": {}, "methods": {}}, "Ljava/util/jar/JarException;": {"fields": {"serialVersionUID:J": {"value": "0x635ca48583f88729L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarEntry;": {"fields": {"attr:Ljava/util/jar/Attributes;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certs:[Ljava/security/cert/Certificate;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signers:[Ljava/security/CodeSigner;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/jar/JarEntry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRealName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/Attributes;": {"fields": {"map:Ljava/util/Map;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/jar/Attributes;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsKey(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsValue(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue(Ljava/util/jar/Attributes$Name;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putAll(Ljava/util/Map;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putValue(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/util/jar/Manifest$FastInputStream;[B)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/DataOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeMain(Ljava/io/DataOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarFile$JarFileEntry;": {"fields": {"this$0:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarFile;Ljava/util/zip/ZipEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarFile$JarEntryIterator;": {"fields": {"e:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarFile;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/jar/JarFile;Ljava/util/jar/JarFile$JarEntryIterator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarFile;": {"fields": {"CLASSPATH_CHARS:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CLASSPATH_LASTOCC:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CLASSPATH_OPTOSFT:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MANIFEST_NAME:Ljava/lang/String;": {"value": "\"META-INF/MANIFEST.MF\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasCheckedSpecialAttributes:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasClassPathAttribute:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jv:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jvInitialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manEntry:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manifest:Ljava/util/jar/Manifest;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "verify:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetjv(Ljava/util/jar/JarFile;)Ljava/util/jar/JarVerifier;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mmaybeInstantiateVerifier(Ljava/util/jar/JarFile;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;ZI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "access$001(Ljava/util/jar/JarFile;)Ljava/util/Enumeration;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkForSpecialAttributes()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytes(Ljava/util/zip/ZipEntry;)[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getManEntry()Ljava/util/jar/JarEntry;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getManifestFromReference()Ljava/util/jar/Manifest;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMetaInfEntryNames()[Ljava/lang/String;": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeVerifier()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "match([C[B[I[I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maybeInstantiateVerifier()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entries()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarEntry(Ljava/lang/String;)Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasClassPathAttribute()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newEntry(Ljava/util/zip/ZipEntry;)Ljava/util/jar/JarEntry;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarInputStream;": {"fields": {"doVerify:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "first:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jv:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "man:Ljava/util/jar/Manifest;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mev:Lsun/security/util/ManifestEntryVerifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryManifest:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkManifest(Ljava/util/jar/JarEntry;)Ljava/util/jar/JarEntry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytes(Ljava/io/InputStream;)[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createZipEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextEntry()Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextJarEntry()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarOutputStream;": {"fields": {"JAR_MAGIC:I": {"value": "0xcafe", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "firstEntry:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/jar/Manifest;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get16([BI)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasMagic([B)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set16([BII)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putNextEntry(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarVerifier$1;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$enum2:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$itor:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$signersReq:Ljava/util/List;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarVerifier;Ljava/util/Iterator;Ljava/util/List;Ljava/util/Enumeration;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarVerifier$2;": {"fields": {"entry:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signers:Ljava/util/Enumeration;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$enum_:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$jar:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$map:Ljava/util/Map;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarVerifier;Ljava/util/Enumeration;Ljava/util/jar/JarFile;Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarVerifier$3;": {"fields": {"this$0:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarVerifier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarVerifier$4;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$entries:Ljava/util/Enumeration;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$map:Ljava/util/Map;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/JarVerifier;Ljava/util/Enumeration;Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarVerifier$VerifierCodeSource;": {"fields": {"serialVersionUID:J": {"value": "-0x7d8eb393234dc4f9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "csdomain:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vcerts:[Ljava/security/cert/Certificate;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vlocation:Ljava/net/URL;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vsigners:[Ljava/security/CodeSigner;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mgetPrivateSigners(Ljava/util/jar/JarVerifier$VerifierCodeSource;)[Ljava/security/CodeSigner;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/net/URL;[Ljava/security/CodeSigner;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/net/URL;[Ljava/security/cert/Certificate;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrivateCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPrivateSigners()[Ljava/security/CodeSigner;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSameDomain(Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/jar/JarVerifier$VerifierStream;": {"fields": {"is:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jv:Ljava/util/jar/JarVerifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mev:Lsun/security/util/ManifestEntryVerifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "numLeft:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/jar/Manifest;Ljava/util/jar/JarEntry;Ljava/io/InputStream;Ljava/util/jar/JarVerifier;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/JarVerifier;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "anyToVerify:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "baos:Ljava/io/ByteArrayOutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "csdomain:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eagerValidation:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "emptyEnumeration:Ljava/util/Enumeration;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "emptySigner:[Ljava/security/CodeSigner;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarCodeSigners:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastURL:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastURLMap:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manDig:Lsun/security/util/ManifestDigester;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manifestDigests:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manifestRawBytes:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsingBlockOrSF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parsingMeta:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pendingBlocks:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sigFileData:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sigFileSigners:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerCache:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerMap:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerToCodeSource:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "urlToCodeSourceMap:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifiedSigners:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findMatchingSigners(Ljava/security/CodeSource;)[Ljava/security/CodeSigner;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJarCodeSigners()Ljava/util/List;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnsignedCS(Ljava/net/URL;)Ljava/security/CodeSource;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSigningRelated(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapSignersToCertArray([Ljava/security/CodeSigner;)[Ljava/security/cert/Certificate;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapSignersToCodeSource(Ljava/net/URL;[Ljava/security/CodeSigner;)Ljava/security/CodeSource;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapSignersToCodeSources(Ljava/net/URL;Ljava/util/List;Z)[Ljava/security/CodeSource;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processEntry(Lsun/security/util/ManifestEntryVerifier;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerMap()Ljava/util/Map;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unsignedEntryNames(Ljava/util/jar/JarFile;)Ljava/util/Enumeration;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "beginEntry(Ljava/util/jar/JarEntry;Lsun/security/util/ManifestEntryVerifier;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doneWithMeta()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entries2(Ljava/util/jar/JarFile;Ljava/util/Enumeration;)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entryNames(Ljava/util/jar/JarFile;[Ljava/security/CodeSource;)Ljava/util/Enumeration;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCerts(Ljava/lang/String;)[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCerts(Ljava/util/jar/JarFile;Ljava/util/jar/JarEntry;)[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCodeSigners(Ljava/lang/String;)[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCodeSigners(Ljava/util/jar/JarFile;Ljava/util/jar/JarEntry;)[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCodeSource(Ljava/net/URL;Ljava/lang/String;)Ljava/security/CodeSource;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCodeSource(Ljava/net/URL;Ljava/util/jar/JarFile;Ljava/util/jar/JarEntry;)Ljava/security/CodeSource;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCodeSources(Ljava/util/jar/JarFile;Ljava/net/URL;)[Ljava/security/CodeSource;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getManifestDigests()Ljava/util/List;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nothingToVerify()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setEagerValidation(Z)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "update(ILsun/security/util/ManifestEntryVerifier;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "update(I[BIILsun/security/util/ManifestEntryVerifier;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/jar/Manifest;": {"fields": {"attr:Ljava/util/jar/Attributes;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entries:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/jar/Manifest;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "make72Safe(Ljava/lang/StringBuffer;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseName([BI)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toLower(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAttributes(Ljava/lang/String;)Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntries()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMainAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/Manifest$FastInputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/InputStream;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fill()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()B": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readLine([B)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLine([BII)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/Pack200$Packer;": {"fields": {"CLASS_ATTRIBUTE_PFX:Ljava/lang/String;": {"value": "\"pack.class.attribute.\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CODE_ATTRIBUTE_PFX:Ljava/lang/String;": {"value": "\"pack.code.attribute.\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFLATE_HINT:Ljava/lang/String;": {"value": "\"pack.deflate.hint\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EFFORT:Ljava/lang/String;": {"value": "\"pack.effort\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ERROR:Ljava/lang/String;": {"value": "\"error\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FALSE:Ljava/lang/String;": {"value": "\"false\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FIELD_ATTRIBUTE_PFX:Ljava/lang/String;": {"value": "\"pack.field.attribute.\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEEP:Ljava/lang/String;": {"value": "\"keep\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEEP_FILE_ORDER:Ljava/lang/String;": {"value": "\"pack.keep.file.order\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LATEST:Ljava/lang/String;": {"value": "\"latest\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "METHOD_ATTRIBUTE_PFX:Ljava/lang/String;": {"value": "\"pack.method.attribute.\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MODIFICATION_TIME:Ljava/lang/String;": {"value": "\"pack.modification.time\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PASS:Ljava/lang/String;": {"value": "\"pass\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PASS_FILE_PFX:Ljava/lang/String;": {"value": "\"pack.pass.file.\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROGRESS:Ljava/lang/String;": {"value": "\"pack.progress\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SEGMENT_LIMIT:Ljava/lang/String;": {"value": "\"pack.segment.limit\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STRIP:Ljava/lang/String;": {"value": "\"strip\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRUE:Ljava/lang/String;": {"value": "\"true\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNKNOWN_ATTRIBUTE:Ljava/lang/String;": {"value": "\"pack.unknown.attribute\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"addPropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pack(Ljava/util/jar/JarFile;Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pack(Ljava/util/jar/JarInputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "properties()Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/Pack200$Unpacker;": {"fields": {"DEFLATE_HINT:Ljava/lang/String;": {"value": "\"unpack.deflate.hint\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FALSE:Ljava/lang/String;": {"value": "\"false\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEEP:Ljava/lang/String;": {"value": "\"keep\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PROGRESS:Ljava/lang/String;": {"value": "\"unpack.progress\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "TRUE:Ljava/lang/String;": {"value": "\"true\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"addPropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "properties()Ljava/util/SortedMap;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unpack(Ljava/io/File;Ljava/util/jar/JarOutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unpack(Ljava/io/InputStream;Ljava/util/jar/JarOutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/jar/Pack200;": {"fields": {"PACK_PROVIDER:Ljava/lang/String;": {"value": "\"java.util.jar.Pack200.Packer\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNPACK_PROVIDER:Ljava/lang/String;": {"value": "\"java.util.jar.Pack200.Unpacker\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "packerImpl:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unpackerImpl:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInstance(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newPacker()Ljava/util/jar/Pack200$Packer;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newUnpacker()Ljava/util/jar/Pack200$Unpacker;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/ConsoleHandler;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configure()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/ErrorManager;": {"fields": {"CLOSE_FAILURE:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FLUSH_FAILURE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FORMAT_FAILURE:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "GENERIC_FAILURE:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OPEN_FAILURE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRITE_FAILURE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reported:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "error(Ljava/lang/String;Ljava/lang/Exception;I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/FileHandler$1;": {"fields": {"this$0:Ljava/util/logging/FileHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/FileHandler;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/FileHandler$InitializationErrorManager-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/FileHandler$InitializationErrorManager;": {"fields": {"lastException:Ljava/lang/Exception;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/logging/FileHandler$InitializationErrorManager-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "error(Ljava/lang/String;Ljava/lang/Exception;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/FileHandler$MeteredStream;": {"fields": {"out:Ljava/io/OutputStream;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/logging/FileHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "written:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/FileHandler;Ljava/io/OutputStream;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/FileHandler;": {"fields": {"MAX_LOCKS:I": {"value": "0x64", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locks:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "append:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "files:[Ljava/io/File;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "limit:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockFileChannel:Ljava/nio/channels/FileChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockFileName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "meter:Ljava/util/logging/FileHandler$MeteredStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mrotate(Ljava/util/logging/FileHandler;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;IIZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configure()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generate(Ljava/lang/String;II)Ljava/io/File;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isParentWritable(Ljava/nio/file/Path;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "open(Ljava/io/File;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "openFiles()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rotate()V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Filter;": {"fields": {}, "methods": {"isLoggable(Ljava/util/logging/LogRecord;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Formatter;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/logging/LogRecord;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "formatMessage(Ljava/util/logging/LogRecord;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHead(Ljava/util/logging/Handler;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTail(Ljava/util/logging/Handler;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Handler;": {"fields": {"offValue:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoding:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "errorManager:Ljava/util/logging/ErrorManager;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter:Ljava/util/logging/Filter;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "formatter:Ljava/util/logging/Formatter;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "logLevel:Ljava/util/logging/Level;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manager:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sealed:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getErrorManager()Ljava/util/logging/ErrorManager;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFilter()Ljava/util/logging/Filter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormatter()Ljava/util/logging/Formatter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLevel()Ljava/util/logging/Level;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoggable(Ljava/util/logging/LogRecord;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reportError(Ljava/lang/String;Ljava/lang/Exception;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEncoding(Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setErrorManager(Ljava/util/logging/ErrorManager;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFilter(Ljava/util/logging/Filter;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFormatter(Ljava/util/logging/Formatter;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLevel(Ljava/util/logging/Level;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Level$KnownLevel;": {"fields": {"intToLevels:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nameToLevels:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "levelObject:Ljava/util/logging/Level;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mirroredLevel:Ljava/util/logging/Level;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/Level;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/util/logging/Level;)V": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findByLocalizedLevelName(Ljava/lang/String;)Ljava/util/logging/Level$KnownLevel;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findByName(Ljava/lang/String;)Ljava/util/logging/Level$KnownLevel;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findByValue(I)Ljava/util/logging/Level$KnownLevel;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matches(Ljava/util/logging/Level;)Ljava/util/logging/Level$KnownLevel;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/Level-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/Level;": {"fields": {"ALL:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CONFIG:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FINE:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FINER:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FINEST:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "INFO:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OFF:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SEVERE:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WARNING:Ljava/util/logging/Level;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultBundle:Ljava/lang/String;": {"value": "\"sun.util.logging.resources.logging\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x71778eecae8cc96eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "cachedLocale:Ljava/util/Locale;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localizedLevelName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resourceBundleName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetname(Ljava/util/logging/Level;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetresourceBundleName(Ljava/util/logging/Level;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetvalue(Ljava/util/logging/Level;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;ILjava/lang/String;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;ZLjava/util/logging/Level-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "computeLocalizedLevelName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findLevel(Ljava/lang/String;)Ljava/util/logging/Level;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)Ljava/util/logging/Level;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readResolve()Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCachedLocalizedLevelName()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLevelName()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocalizedLevelName()Ljava/lang/String;": {"other": [".method", "final", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLocalizedName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceBundleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intValue()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/logging/LogManager;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$2;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$owner:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/LogManager;Ljava/util/logging/LogManager;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$3;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$4;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$l:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$sysLogger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;Ljava/util/logging/Logger;Ljava/util/logging/Logger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$5;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handlersPropertyName:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$logger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;Ljava/lang/String;Ljava/util/logging/Logger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$7;": {"fields": {"val$logger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$parent:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/Logger;Ljava/util/logging/Logger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$6;": {"fields": {"val$level:Ljava/util/logging/Level;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$logger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/Logger;Ljava/util/logging/Level;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$Beans;": {"fields": {"propertyChangeEventClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "propertyChangeListenerClass:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "propertyChangeMethod:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "propertyEventCtor:Ljava/lang/reflect/Constructor;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getConstructor(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMethod(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokePropertyChange(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isBeansPresent()Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newPropertyChangeEvent(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$Cleaner-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/LogManager$Cleaner;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/LogManager;Ljava/util/logging/LogManager$Cleaner-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$LogNode;": {"fields": {"children:Ljava/util/HashMap;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "context:Ljava/util/logging/LogManager$LoggerContext;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loggerRef:Ljava/util/logging/LogManager$LoggerWeakRef;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/logging/LogManager$LogNode;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager$LogNode;Ljava/util/logging/LogManager$LoggerContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "walkAndSetParent(Ljava/util/logging/Logger;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$LoggerContext$1;": {"fields": {"this$1:Ljava/util/logging/LogManager$LoggerContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$logger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$owner:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager$LoggerContext;Ljava/util/logging/Logger;Ljava/util/logging/LogManager;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$LoggerContext-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/LogManager$LoggerWeakRef;": {"fields": {"disposed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "node:Ljava/util/logging/LogManager$LogNode;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parentRef:Ljava/lang/ref/WeakReference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;Ljava/util/logging/Logger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dispose()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setNode(Ljava/util/logging/LogManager$LogNode;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParentRef(Ljava/lang/ref/WeakReference;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$LoggerContext;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "namedLoggers:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root:Ljava/util/logging/LogManager$LogNode;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/LogManager;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/LogManager;Ljava/util/logging/LogManager$LoggerContext-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureAllDefaultLoggers(Ljava/util/logging/Logger;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureDefaultLogger(Ljava/util/logging/Logger;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureInitialized()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processParentHandlers(Ljava/util/logging/Logger;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addLocalLogger(Ljava/util/logging/Logger;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addLocalLogger(Ljava/util/logging/Logger;Z)Z": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "demandLogger(Ljava/lang/String;Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findLogger(Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGlobalLogger()Ljava/util/logging/Logger;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLoggerNames()Ljava/util/Enumeration;": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNode(Ljava/lang/String;)Ljava/util/logging/LogManager$LogNode;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOwner()Ljava/util/logging/LogManager;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getRootLogger()Ljava/util/logging/Logger;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeLoggerRef(Ljava/lang/String;Ljava/util/logging/LogManager$LoggerWeakRef;)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "requiresDefaultLoggers()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager$RootLogger;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/LogManager;Ljava/util/logging/LogManager$RootLogger-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accessCheckedHandlers()[Ljava/util/logging/Handler;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addHandler(Ljava/util/logging/Handler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeHandler(Ljava/util/logging/Handler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogManager$RootLogger-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/LogManager$SystemLoggerContext;": {"fields": {"this$0:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/logging/LogManager;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "demandLogger(Ljava/lang/String;Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/LogManager;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOGGING_MXBEAN_NAME:Ljava/lang/String;": {"value": "\"java.util.logging:type=Logging\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_ITERATIONS:I": {"value": "0x190", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultLevel:Ljava/util/logging/Level;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loggingMXBean:Ljava/util/logging/LoggingMXBean;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manager:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contextsMap:Ljava/util/WeakHashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "controlPermission:Ljava/security/Permission;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deathImminent:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializationDone:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializedCalled:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializedGlobalHandlers:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "listenerMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loggerRefQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "props:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimordialConfiguration:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rootLogger:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemContext:Ljava/util/logging/LogManager$LoggerContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userContext:Ljava/util/logging/LogManager$LoggerContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetinitializationDone(Ljava/util/logging/LogManager;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetinitializedCalled(Ljava/util/logging/LogManager;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetloggerRefQueue(Ljava/util/logging/LogManager;)Ljava/lang/ref/ReferenceQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetrootLogger(Ljava/util/logging/LogManager;)Ljava/util/logging/Logger;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputdeathImminent(Ljava/util/logging/LogManager;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputinitializedGlobalHandlers(Ljava/util/logging/LogManager;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputrootLogger(Ljava/util/logging/LogManager;Ljava/util/logging/Logger;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$minitializeGlobalHandlers(Ljava/util/logging/LogManager;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mparseClassNames(Ljava/util/logging/LogManager;Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mreadPrimordialConfiguration(Ljava/util/logging/LogManager;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetdefaultLevel()Ljava/util/logging/Level;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetmanager()Ljava/util/logging/LogManager;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smdoSetLevel(Ljava/util/logging/Logger;Ljava/util/logging/Level;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smdoSetParent(Ljava/util/logging/Logger;Ljava/util/logging/Logger;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetClassInstance(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Void;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSubclassPermissions()Ljava/lang/Void;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contexts()Ljava/util/List;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSetLevel(Ljava/util/logging/Logger;Ljava/util/logging/Level;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSetParent(Ljava/util/logging/Logger;Ljava/util/logging/Logger;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassInstance(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLogManager()Ljava/util/logging/LogManager;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoggingMXBean()Ljava/util/logging/LoggingMXBean;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserContext()Ljava/util/logging/LogManager$LoggerContext;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initializeGlobalHandlers()V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadLoggerHandlers(Ljava/util/logging/Logger;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseClassNames(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readPrimordialConfiguration()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resetLogger(Ljava/util/logging/Logger;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setLevelsOnExistingLoggers()V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addLogger(Ljava/util/logging/Logger;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkAccess()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPermission()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "demandLogger(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Class;)Ljava/util/logging/Logger;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "demandSystemLogger(Ljava/lang/String;Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "drainLoggerRefQueueBounded()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureLogManagerInitialized()V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBooleanProperty(Ljava/lang/String;Z)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFilterProperty(Ljava/lang/String;Ljava/util/logging/Filter;)Ljava/util/logging/Filter;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFormatterProperty(Ljava/lang/String;Ljava/util/logging/Formatter;)Ljava/util/logging/Formatter;": {"other": [".method"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getIntProperty(Ljava/lang/String;I)I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLevelProperty(Ljava/lang/String;Ljava/util/logging/Level;)Ljava/util/logging/Level;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoggerNames()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStringProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemContext()Ljava/util/logging/LogManager$LoggerContext;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readConfiguration()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readConfiguration(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePropertyChangeListener(Ljava/beans/PropertyChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LogRecord;": {"fields": {"MIN_SEQUENTIAL_THREAD_ID:I": {"value": "0x3fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "globalSequenceNumber:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextThreadId:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x4a8d593df3695196L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "threadIds:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "level:Ljava/util/logging/Level;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loggerName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "message:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "millis:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needToInferCaller:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parameters:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resourceBundle:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resourceBundleName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sequenceNumber:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceClassName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceMethodName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "threadID:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thrown:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/logging/Level;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "defaultThreadID()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inferCaller()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLoggerImplFrame(Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getLevel()Ljava/util/logging/Level;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoggerName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMillis()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceBundle()Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceBundleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSequenceNumber()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSourceClassName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSourceMethodName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThreadID()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThrown()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLevel(Ljava/util/logging/Level;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoggerName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMessage(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMillis(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setParameters([Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setResourceBundle(Ljava/util/ResourceBundle;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setResourceBundleName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSequenceNumber(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSourceClassName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSourceMethodName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setThreadID(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setThrown(Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Logger$1;": {"fields": {"val$locale:Ljava/util/Locale;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Locale;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/Logger$LoggerBundle-IA;": {"fields": {}, "methods": {}}, "Ljava/util/logging/Logger$LoggerBundle;": {"fields": {"resourceBundleName:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userBundle:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/util/ResourceBundle;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/ResourceBundle;Ljava/util/logging/Logger$LoggerBundle-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;Ljava/util/ResourceBundle;)Ljava/util/logging/Logger$LoggerBundle;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSystemBundle()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/Logger$SystemLoggerHelper$1;": {"fields": {"val$key:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/Logger$SystemLoggerHelper;": {"fields": {"disableCallerCheck:Z": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBooleanProperty(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/logging/Logger;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GLOBAL_LOGGER_NAME:Ljava/lang/String;": {"value": "\"global\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_RESOURCE_BUNDLE:Ljava/util/logging/Logger$LoggerBundle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SYSTEM_BUNDLE:Ljava/util/logging/Logger$LoggerBundle;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SYSTEM_LOGGER_RB_NAME:Ljava/lang/String;": {"value": "\"sun.util.logging.resources.logging\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "emptyHandlers:[Ljava/util/logging/Handler;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "global:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offValue:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "treeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "anonymous:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "callersClassLoaderRef:Ljava/lang/ref/WeakReference;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "catalog:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "catalogLocale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "catalogName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter:Ljava/util/logging/Filter;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handlers:Ljava/util/concurrent/CopyOnWriteArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSystemLogger:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "kids:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "levelObject:Ljava/util/logging/Level;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "levelValue:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loggerBundle:Ljava/util/logging/Logger$LoggerBundle;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manager:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/logging/Logger;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "useParentHandlers:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetNO_RESOURCE_BUNDLE()Ljava/util/logging/Logger$LoggerBundle;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetSYSTEM_BUNDLE()Ljava/util/logging/Logger$LoggerBundle;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Class;Ljava/util/logging/LogManager;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkPermission()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "demandLogger(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Class;)Ljava/util/logging/Logger;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doLog(Ljava/util/logging/LogRecord;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doLog(Ljava/util/logging/LogRecord;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doLog(Ljava/util/logging/LogRecord;Ljava/util/ResourceBundle;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doSetParent(Ljava/util/logging/Logger;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findResourceBundle(Ljava/lang/String;Z)Ljava/util/ResourceBundle;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findSystemResourceBundle(Ljava/util/Locale;)Ljava/util/ResourceBundle;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAnonymousLogger()Ljava/util/logging/Logger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAnonymousLogger(Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCallersClassLoader()Ljava/lang/ClassLoader;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEffectiveLoggerBundle()Ljava/util/logging/Logger$LoggerBundle;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGlobal()Ljava/util/logging/Logger;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLogger(Ljava/lang/String;Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPlatformLogger(Ljava/lang/String;)Ljava/util/logging/Logger;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCallersClassLoaderRef(Ljava/lang/Class;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setupResourceInfo(Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateEffectiveLevel()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accessCheckedHandlers()[Ljava/util/logging/Handler;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addHandler(Ljava/util/logging/Handler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "config(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "config(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entering(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entering(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entering(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exiting(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exiting(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fine(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fine(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finer(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finer(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finest(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finest(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFilter()Ljava/util/logging/Filter;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandlers()[Ljava/util/logging/Handler;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLevel()Ljava/util/logging/Level;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/util/logging/Logger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceBundle()Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getResourceBundleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseParentHandlers()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "info(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "info(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLevelInitialized()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isLoggable(Ljava/util/logging/Level;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/lang/Throwable;Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/Level;Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logp(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/util/ResourceBundle;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "logrb(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/String;Ljava/util/ResourceBundle;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeChildLogger(Ljava/util/logging/LogManager$LoggerWeakRef;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeHandler(Ljava/util/logging/Handler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFilter(Ljava/util/logging/Filter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLevel(Ljava/util/logging/Level;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLogManager(Ljava/util/logging/LogManager;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setParent(Ljava/util/logging/Logger;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setResourceBundle(Ljava/util/ResourceBundle;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseParentHandlers(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "severe(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "severe(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "throwing(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "warning(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "warning(Ljava/util/function/Supplier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/Logging;": {"fields": {"EMPTY_STRING:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "logManager:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerLevel(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoggerNames()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParentLoggerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoggerLevel(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LoggingMXBean;": {"fields": {}, "methods": {"getLoggerLevel(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoggerNames()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParentLoggerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoggerLevel(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LoggingPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/LoggingProxyImpl;": {"fields": {"INSTANCE:Lsun/util/logging/LoggingProxy;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevel(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelName(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelValue(Ljava/lang/Object;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLogger(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerLevel(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerNames()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getParentLoggerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLevel(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLoggerLevel(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/logging/MemoryHandler;": {"fields": {"DEFAULT_SIZE:I": {"value": "0x3e8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buffer:[Ljava/util/logging/LogRecord;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pushLevel:Ljava/util/logging/Level;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "start:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "target:Ljava/util/logging/Handler;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/logging/Handler;ILjava/util/logging/Level;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configure()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPushLevel()Ljava/util/logging/Level;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoggable(Ljava/util/logging/LogRecord;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "push()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPushLevel(Ljava/util/logging/Level;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/SimpleFormatter;": {"fields": {"format:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dat:Ljava/util/Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "format(Ljava/util/logging/LogRecord;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/SocketHandler;": {"fields": {"host:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sock:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configure()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "connect()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/StreamHandler;": {"fields": {"doneHeader:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "output:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writer:Ljava/io/Writer;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/logging/Formatter;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "configure()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flushAndClose()V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoggable(Ljava/util/logging/LogRecord;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "publish(Ljava/util/logging/LogRecord;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEncoding(Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOutputStream(Ljava/io/OutputStream;)V": {"other": [".method", "protected", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/logging/XMLFormatter;": {"fields": {"manager:Ljava/util/logging/LogManager;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "a2(Ljava/lang/StringBuilder;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendISO8601(Ljava/lang/StringBuilder;J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "escape(Ljava/lang/StringBuilder;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "format(Ljava/util/logging/LogRecord;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHead(Ljava/util/logging/Handler;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTail(Ljava/util/logging/Handler;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/AbstractPreferences$1;": {"fields": {"this$0:Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/AbstractPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/AbstractPreferences$EventDispatchThread-IA;": {"fields": {}, "methods": {}}, "Ljava/util/prefs/AbstractPreferences$EventDispatchThread;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/prefs/AbstractPreferences$EventDispatchThread-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/AbstractPreferences$NodeAddedEvent;": {"fields": {"serialVersionUID:J": {"value": "-0x5d95edd843702890L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "this$0:Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/AbstractPreferences;Ljava/util/prefs/Preferences;Ljava/util/prefs/Preferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/AbstractPreferences$NodeRemovedEvent;": {"fields": {"serialVersionUID:J": {"value": "0x793ab898a1470785L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "this$0:Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/AbstractPreferences;Ljava/util/prefs/Preferences;Ljava/util/prefs/Preferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/AbstractPreferences;": {"fields": {"EMPTY_ABSTRACT_PREFS_ARRAY:[Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_STRING_ARRAY:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eventDispatchThread:Ljava/lang/Thread;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eventQueue:Ljava/util/List;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absolutePath:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "kidCache:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newNode:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nodeListeners:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent:Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefListeners:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "root:Ljava/util/prefs/AbstractPreferences;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetroot(Ljava/util/prefs/AbstractPreferences;)Ljava/util/prefs/AbstractPreferences;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgeteventQueue()Ljava/util/List;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/prefs/AbstractPreferences;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enqueueNodeAddedEvent(Ljava/util/prefs/Preferences;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueueNodeRemovedEvent(Ljava/util/prefs/Preferences;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enqueuePreferenceChangeEvent(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flush2()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "node(Ljava/util/StringTokenizer;)Ljava/util/prefs/Preferences;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nodeExists(Ljava/util/StringTokenizer;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removeNode2()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startEventDispatchThreadIfNecessary()V": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sync2()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "absolutePath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addNodeChangeListener(Ljava/util/prefs/NodeChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPreferenceChangeListener(Ljava/util/prefs/PreferenceChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cachedChildren()[Ljava/util/prefs/AbstractPreferences;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childSpi(Ljava/lang/String;)Ljava/util/prefs/AbstractPreferences;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childrenNames()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childrenNamesSpi()[Ljava/lang/String;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exportNode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exportSubtree(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushSpi()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/String;Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByteArray(Ljava/lang/String;[B)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChild(Ljava/lang/String;)Ljava/util/prefs/AbstractPreferences;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/String;D)D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/String;F)F": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/String;I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSpi(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRemoved()Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUserNode()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keysSpi()[Ljava/lang/String;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "node(Ljava/lang/String;)Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nodeExists(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nodeListeners()[Ljava/util/prefs/NodeChangeListener;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parent()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "prefListeners()[Ljava/util/prefs/PreferenceChangeListener;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "put(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putBoolean(Ljava/lang/String;Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putByteArray(Ljava/lang/String;[B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDouble(Ljava/lang/String;D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloat(Ljava/lang/String;F)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putInt(Ljava/lang/String;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLong(Ljava/lang/String;J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putSpi(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNode()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNodeChangeListener(Ljava/util/prefs/NodeChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNodeSpi()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePreferenceChangeListener(Ljava/util/prefs/PreferenceChangeListener;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeSpi(Ljava/lang/String;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sync()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "syncSpi()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/BackingStoreException;": {"fields": {"serialVersionUID:J": {"value": "0xbee9c5c998835f5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/Base64;": {"fields": {"altBase64ToInt:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base64ToInt:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intToAltBase64:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intToBase64:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "altBase64ToByteArray(Ljava/lang/String;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base64ToByteArray(Ljava/lang/String;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base64ToByteArray(Ljava/lang/String;Z)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "base64toInt(C[B)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteArrayToAltBase64([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteArrayToBase64([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteArrayToBase64([BZ)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "main([Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/FileSystemPreferences$4;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$5;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$6;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$7;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$8;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Long;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/FileSystemPreferences$9;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$newModTime:Ljava/lang/Long;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;Ljava/lang/Long;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$Change-IA;": {"fields": {}, "methods": {}}, "Ljava/util/prefs/FileSystemPreferences$Change;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/prefs/FileSystemPreferences;Ljava/util/prefs/FileSystemPreferences$Change-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replay()V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$NodeCreate-IA;": {"fields": {}, "methods": {}}, "Ljava/util/prefs/FileSystemPreferences$NodeCreate;": {"fields": {"this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/prefs/FileSystemPreferences;Ljava/util/prefs/FileSystemPreferences$NodeCreate-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replay()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$Put;": {"fields": {"key:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replay()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences$Remove;": {"fields": {"key:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/prefs/FileSystemPreferences;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/FileSystemPreferences;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replay()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/prefs/FileSystemPreferences;": {"fields": {"EACCES:I": {"value": "0xd", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EAGAIN:I": {"value": "0xb", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "EMPTY_STRING_ARRAY:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ERROR_CODE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INIT_SLEEP_TIME:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LOCK_HANDLE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MAX_ATTEMPTS:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USER_READ_WRITE:I": {"value": "0x180", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USER_RWX:I": {"value": "0x1c0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USER_RWX_ALL_RX:I": {"value": "0x1ed", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USER_RW_ALL_READ:I": {"value": "0x1a4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSystemRootModified:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isSystemRootWritable:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUserRootModified:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUserRootWritable:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemLockFile:Ljava/io/File;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemRoot:Ljava/util/prefs/Preferences;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemRootDir:Ljava/io/File;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemRootLockHandle:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemRootModFile:Ljava/io/File;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemRootModTime:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userLockFile:Ljava/io/File;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userRoot:Ljava/util/prefs/Preferences;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userRootDir:Ljava/io/File;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userRootLockHandle:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userRootModFile:Ljava/io/File;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userRootModTime:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "changeLog:Ljava/util/List;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dir:Ljava/io/File;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUserNode:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastSyncTime:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nodeCreate:Ljava/util/prefs/FileSystemPreferences$NodeCreate;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefsCache:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefsFile:Ljava/io/File;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tmpFile:Ljava/io/File;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdir(Ljava/util/prefs/FileSystemPreferences;)Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetprefsCache(Ljava/util/prefs/FileSystemPreferences;)Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetprefsFile(Ljava/util/prefs/FileSystemPreferences;)Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettmpFile(Ljava/util/prefs/FileSystemPreferences;)Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetEMPTY_STRING_ARRAY()[Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetisSystemRootWritable()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetsystemRootDir()Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetsystemRootModFile()Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetsystemRootModTime()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetuserRootDir()Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetuserRootModFile()Ljava/io/File;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetuserRootModTime()J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputisSystemRootModified(Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputisSystemRootWritable(Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputisUserRootModified(Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputisUserRootWritable(Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputsystemRootDir(Ljava/io/File;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputsystemRootModFile(Ljava/io/File;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputsystemRootModTime(J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputuserRootDir(Ljava/io/File;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputuserRootModFile(Ljava/io/File;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputuserRootModTime(J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smchmod(Ljava/lang/String;I)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetLogger()Lsun/util/logging/PlatformLogger;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smnodeName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsyncWorld()V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/io/File;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/prefs/FileSystemPreferences;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "byteArray(Ljava/lang/String;)[B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkLockFile0ErrorCode(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chmod(Ljava/lang/String;I)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dirName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLogger()Lsun/util/logging/PlatformLogger;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSystemRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUserRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initCacheIfNecessary()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDirChar(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "loadCache()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockFile(Z)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lockFile0(Ljava/lang/String;IZ)[I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nodeName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "replayChanges()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setupSystemRoot()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setupUserRoot()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "syncSpiPrivileged()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "syncWorld()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlockFile()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unlockFile0(I)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBackCache()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "childSpi(Ljava/lang/String;)Ljava/util/prefs/AbstractPreferences;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childrenNamesSpi()[Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushSpi()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSpi(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUserNode()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keysSpi()[Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putSpi(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNode()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNodeSpi()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeSpi(Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sync()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "syncSpi()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/FileSystemPreferencesFactory;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "systemRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "userRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/InvalidPreferencesFormatException;": {"fields": {"serialVersionUID:J": {"value": "-0xafcbcc3ef703d75L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/NodeChangeEvent;": {"fields": {"serialVersionUID:J": {"value": "0x6ffaaa71714d271dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "child:Ljava/util/prefs/Preferences;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/Preferences;Ljava/util/prefs/Preferences;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getChild()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/NodeChangeListener;": {"fields": {}, "methods": {"childAdded(Ljava/util/prefs/NodeChangeEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childRemoved(Ljava/util/prefs/NodeChangeEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/PreferenceChangeEvent;": {"fields": {"serialVersionUID:J": {"value": "0xb03e03d54d2278fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "key:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newValue:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/prefs/Preferences;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "getKey()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNewValue()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNode()Ljava/util/prefs/Preferences;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/Preferences;": {"fields": {"MAX_KEY_LENGTH:I": {"value": "0x50", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_NAME_LENGTH:I": {"value": "0x50", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MAX_VALUE_LENGTH:I": {"value": "0x2000", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "factory:Ljava/util/prefs/PreferencesFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefsPerm:Ljava/security/Permission;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "factory()Ljava/util/prefs/PreferencesFactory;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "importPreferences(Ljava/io/InputStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nodeName(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setPreferencesFactory(Ljava/util/prefs/PreferencesFactory;)Ljava/util/prefs/PreferencesFactory;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "systemNodeForPackage(Ljava/lang/Class;)Ljava/util/prefs/Preferences;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "systemRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "userNodeForPackage(Ljava/lang/Class;)Ljava/util/prefs/Preferences;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "userRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "absolutePath()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addNodeChangeListener(Ljava/util/prefs/NodeChangeListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addPreferenceChangeListener(Ljava/util/prefs/PreferenceChangeListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "childrenNames()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exportNode(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exportSubtree(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBoolean(Ljava/lang/String;Z)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByteArray(Ljava/lang/String;[B)[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/String;D)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/String;F)F": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/String;I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/String;J)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isUserNode()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keys()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "node(Ljava/lang/String;)Ljava/util/prefs/Preferences;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nodeExists(Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parent()Ljava/util/prefs/Preferences;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "put(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putBoolean(Ljava/lang/String;Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putByteArray(Ljava/lang/String;[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putDouble(Ljava/lang/String;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putFloat(Ljava/lang/String;F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putInt(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putLong(Ljava/lang/String;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNode()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeNodeChangeListener(Ljava/util/prefs/NodeChangeListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removePreferenceChangeListener(Ljava/util/prefs/PreferenceChangeListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sync()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/PreferenceChangeListener;": {"fields": {}, "methods": {"preferenceChange(Ljava/util/prefs/PreferenceChangeEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/PreferencesFactory;": {"fields": {}, "methods": {"systemRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "userRoot()Ljava/util/prefs/Preferences;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/XmlSupport$EH-IA;": {"fields": {}, "methods": {}}, "Ljava/util/prefs/XmlSupport$EH;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/prefs/XmlSupport$EH-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "error(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fatalError(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "warning(Lorg/xml/sax/SAXParseException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/XmlSupport$NodeListAdapter;": {"fields": {"delegate:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "item(I)Lorg/w3c/dom/Node;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/XmlSupport$Resolver-IA;": {"fields": {}, "methods": {}}, "Ljava/util/prefs/XmlSupport$Resolver;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/prefs/XmlSupport$Resolver-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolveEntity(Ljava/lang/String;Ljava/lang/String;)Lorg/xml/sax/InputSource;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/prefs/XmlSupport;": {"fields": {"EXTERNAL_XML_VERSION:Ljava/lang/String;": {"value": "\"1.0\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAP_XML_VERSION:Ljava/lang/String;": {"value": "\"1.0\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREFS_DTD:Ljava/lang/String;": {"value": "\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREFS_DTD_URI:Ljava/lang/String;": {"value": "\"http://java.sun.com/dtd/preferences.dtd\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ImportPrefs(Ljava/util/prefs/Preferences;Lorg/w3c/dom/Element;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ImportSubtree(Ljava/util/prefs/Preferences;Lorg/w3c/dom/Element;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createPrefsDoc(Ljava/lang/String;)Lorg/w3c/dom/Document;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "elementNodesOf(Lorg/w3c/dom/NodeList;)Lorg/w3c/dom/NodeList;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "export(Ljava/io/OutputStream;Ljava/util/prefs/Preferences;Z)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exportMap(Ljava/io/OutputStream;Ljava/util/Map;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "importMap(Ljava/io/InputStream;Ljava/util/Map;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "importPreferences(Ljava/io/InputStream;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadPrefsDoc(Ljava/io/InputStream;)Lorg/w3c/dom/Document;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putPreferencesInXml(Lorg/w3c/dom/Element;Lorg/w3c/dom/Document;Ljava/util/prefs/Preferences;Z)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeDoc(Lorg/w3c/dom/Document;Ljava/io/OutputStream;)V": {"other": [".method", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/regex/MatchResult;": {"fields": {}, "methods": {"end()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group(I)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start(I)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/regex/Matcher$OffsetBasedMatchResult;": {"fields": {"input:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offsets:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/regex/Matcher;": {"fields": {"anchoringBounds:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendPos:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "from:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "groups:[I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchFound:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativeMatcher:Lcom/android/icu/util/regex/MatcherNative;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "originalInput:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parentPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "text:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "to:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transparentBounds:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendEvaluated(Ljava/lang/StringBuffer;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureMatch()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMatchedGroupIndex(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quoteReplacement(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset(Ljava/lang/CharSequence;II)Ljava/util/regex/Matcher;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "resetForInput()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "appendReplacement(Ljava/lang/StringBuffer;Ljava/lang/String;)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "appendTail(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "find()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "find(I)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubSequence(II)Ljava/lang/CharSequence;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTextLength()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "group()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasAnchoringBounds()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasTransparentBounds()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hitEnd()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookingAt()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matches()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pattern()Ljava/util/regex/Pattern;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "region(II)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "regionEnd()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "regionStart()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceAll(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "replaceFirst(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "requireEnd()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start(I)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMatchResult()Ljava/util/regex/MatchResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useAnchoringBounds(Z)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "usePattern(Ljava/util/regex/Pattern;)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "useTransparentBounds(Z)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/regex/Pattern$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/regex/Pattern;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/regex/Pattern$1MatcherIterator;": {"fields": {"current:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyElementCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matcher:Ljava/util/regex/Matcher;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextElement:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$input:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/regex/Pattern;": {"fields": {"CANON_EQ:I": {"value": "0x80", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CASE_INSENSITIVE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "COMMENTS:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DOTALL:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FASTSPLIT_METACHARACTERS:Ljava/lang/String;": {"value": "\"\\\\?*+[](){}^$.|\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LITERAL:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "MULTILINE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNICODE_CASE:I": {"value": "0x40", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNICODE_CHARACTER_CLASS:I": {"value": "0x100", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNIX_LINES:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "0x4667d56b6e49020dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "flags:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nativePattern:Lcom/android/icu/util/regex/PatternNative;": {"value": null, "other": [".field", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "compile(Ljava/lang/String;)Ljava/util/regex/Pattern;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compile(Ljava/lang/String;I)Ljava/util/regex/Pattern;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compile()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fastSplit(Ljava/lang/String;Ljava/lang/String;I)[Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matches(Ljava/lang/String;Ljava/lang/CharSequence;)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "quote(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "asPredicate()Ljava/util/function/Predicate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flags()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$asPredicate$0$java-util-regex-Pattern(Ljava/lang/String;)Z": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matcher(Ljava/lang/CharSequence;)Ljava/util/regex/Matcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "pattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "split(Ljava/lang/CharSequence;)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "split(Ljava/lang/CharSequence;I)[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "splitAsStream(Ljava/lang/CharSequence;)Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/regex/PatternSyntaxException;": {"fields": {"serialVersionUID:J": {"value": "-0x35a1f4cf3fc7bfd2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "desc:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pattern:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDescription()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPattern()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/AbstractPipeline$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/Spliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/AbstractPipeline$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/AbstractPipeline$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/stream/AbstractPipeline;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/AbstractPipeline;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MSG_CONSUMED:Ljava/lang/String;": {"value": "\"source already consumed or closed\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MSG_STREAM_LINKED:Ljava/lang/String;": {"value": "\"stream has already been operated upon or closed\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "combinedFlags:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "depth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "linkedOrConsumed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextStage:Ljava/util/stream/AbstractPipeline;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "previousStage:Ljava/util/stream/AbstractPipeline;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceAnyStateful:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceCloseAction:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceOrOpFlags:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceSpliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceStage:Ljava/util/stream/AbstractPipeline;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sourceSupplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$opEvaluateParallelLazy$2(I)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$wrapSpliterator$1(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sourceSpliterator(I)Ljava/util/Spliterator;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyInto(Ljava/util/stream/Sink;Ljava/util/Spliterator;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyIntoWithCancel(Ljava/util/stream/Sink;Ljava/util/Spliterator;)V": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluate(Ljava/util/stream/TerminalOp;)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluate(Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluateToArrayNode(Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluateToNode(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exactOutputSizeIfKnown(Ljava/util/Spliterator;)J": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEachWithCancel(Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOutputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSourceShape()Ljava/util/stream/StreamShape;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getStreamAndOpFlags()I": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getStreamFlags()I": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isOrdered()Z": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isParallel()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$spliterator$0$java-util-stream-AbstractPipeline()Ljava/util/Spliterator;": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "onClose(Ljava/lang/Runnable;)Ljava/util/stream/BaseStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sourceStageSpliterator()Ljava/util/Spliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)Ljava/util/Spliterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapAndCopyInto(Ljava/util/stream/Sink;Ljava/util/Spliterator;)Ljava/util/stream/Sink;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapSink(Ljava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/AbstractShortCircuitTask;": {"fields": {"canceled:Z": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sharedResult:Ljava/util/concurrent/atomic/AtomicReference;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractShortCircuitTask;Ljava/util/Spliterator;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancelLaterNodes()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEmptyResult()Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalResult()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocalResult(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shortCircuit(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "taskCanceled()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/AbstractSpinedBuffer;": {"fields": {"MAX_CHUNK_POWER:I": {"value": "0x1e", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_CHUNK_POWER:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_CHUNK_SIZE:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MIN_SPINE_SIZE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "elementIndex:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialChunkPower:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "priorElementCount:[J": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spineIndex:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chunkSize(I)I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/AbstractTask;": {"fields": {"LEAF_TARGET:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helper:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftChild:Ljava/util/stream/AbstractTask;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localResult:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rightChild:Ljava/util/stream/AbstractTask;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSize:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractTask;Ljava/util/Spliterator;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suggestTargetSize(J)J": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalResult()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getParent()Ljava/util/stream/AbstractTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRawResult()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTargetSize(J)J": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeaf()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeftmostNode()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isRoot()Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLocalResult(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setRawResult(Ljava/lang/Object;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/BaseStream;": {"fields": {}, "methods": {"close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParallel()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onClose(Ljava/lang/Runnable;)Ljava/util/stream/BaseStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collector$Characteristics;": {"fields": {"$VALUES:[Ljava/util/stream/Collector$Characteristics;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONCURRENT:Ljava/util/stream/Collector$Characteristics;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "IDENTITY_FINISH:Ljava/util/stream/Collector$Characteristics;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNORDERED:Ljava/util/stream/Collector$Characteristics;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/Collector$Characteristics;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljava/util/stream/Collector$Characteristics;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collector;": {"fields": {}, "methods": {"of(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;Ljava/util/function/Function;[Ljava/util/stream/Collector$Characteristics;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;[Ljava/util/stream/Collector$Characteristics;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accumulator()Ljava/util/function/BiConsumer;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()Ljava/util/Set;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combiner()Ljava/util/function/BinaryOperator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finisher()Ljava/util/function/Function;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supplier()Ljava/util/function/Supplier;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda10;": {"fields": {"f$0:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToIntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda11;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda13;": {"fields": {"f$0:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda14;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda15;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda16;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda17;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda18;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda19;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda20;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda21;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda22;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda23;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda24;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda25;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda26;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;Ljava/util/function/Predicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda27;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda28;": {"fields": {"f$0:Ljava/util/stream/Collector;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Collector;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda29;": {"fields": {"f$0:Ljava/util/stream/Collector;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Collector;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda30;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda31;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda32;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda33;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda34;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda35;": {"fields": {"f$0:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda36;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda37;": {"fields": {"f$0:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda38;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda39;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToDoubleFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda40;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda41;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda42;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda43;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda44;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda45;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda46;": {"fields": {"f$0:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToIntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda47;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda49;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda48;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda50;": {"fields": {"f$0:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/lang/CharSequence;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda51;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda52;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda53;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda54;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda55;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda56;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$2:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda58;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda57;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda59;": {"fields": {"f$0:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToIntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda5;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda60;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda61;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda63;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda62;": {"fields": {"f$0:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToLongFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda64;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda65;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda67;": {"fields": {"f$0:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToDoubleFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda66;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda70;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda6;": {"fields": {"f$0:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToLongFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda71;": {"fields": {"f$0:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToDoubleFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda74;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda69;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda68;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda75;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda73;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda79;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda72;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda80;": {"fields": {"f$0:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda7;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda78;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda77;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda84;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda76;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda83;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda82;": {"fields": {"f$0:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda81;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda88;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;Ljava/lang/Object;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda87;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda86;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda85;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda90;": {"fields": {"f$0:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/ToLongFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda91;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda8;": {"fields": {"f$0:Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda89;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda9;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda94;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$CollectorImpl;": {"fields": {"accumulator:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finisher:Ljava/util/function/Function;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;Ljava/util/function/Function;Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accumulator()Ljava/util/function/BiConsumer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combiner()Ljava/util/function/BinaryOperator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finisher()Ljava/util/function/Function;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supplier()Ljava/util/function/Supplier;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda93;": {"fields": {"f$0:Ljava/util/function/Function;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$$ExternalSyntheticLambda92;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$Partition;": {"fields": {"forFalse:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forTrue:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entrySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$Partition$1;": {"fields": {"this$0:Ljava/util/stream/Collectors$Partition;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Collectors$Partition;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DistinctOps$1$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/concurrent/atomic/AtomicBoolean;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/atomic/AtomicBoolean;Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors$1OptionalBox;": {"fields": {"present:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$op:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Collectors;": {"fields": {"CH_CONCURRENT_ID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CH_CONCURRENT_NOID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CH_ID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CH_NOID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CH_UNORDERED_ID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CH_UNORDERED_NOID:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smcastingIdentity()Ljava/util/function/Function;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "averagingDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "averagingInt(Ljava/util/function/ToIntFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "averagingLong(Ljava/util/function/ToLongFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxSupplier(Ljava/lang/Object;)Ljava/util/function/Supplier;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "castingIdentity()Ljava/util/function/Function;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "collectingAndThen(Ljava/util/stream/Collector;Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "computeFinalSum([D)D": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "counting()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "duplicateKeyException(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/IllegalStateException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filtering(Ljava/util/function/Predicate;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapping(Ljava/util/function/Function;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingBy(Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingBy(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingBy(Ljava/util/function/Function;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingByConcurrent(Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingByConcurrent(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "groupingByConcurrent(Ljava/util/function/Function;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joining()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joining(Ljava/lang/CharSequence;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joining(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$averagingDouble$38()[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingDouble$39(Ljava/util/function/ToDoubleFunction;[DLjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingDouble$40([D[D)[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingDouble$41([D)Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingInt$30()[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingInt$31(Ljava/util/function/ToIntFunction;[JLjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingInt$32([J[J)[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingInt$33([J)Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingLong$34()[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingLong$35(Ljava/util/function/ToLongFunction;[JLjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingLong$36([J[J)[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$averagingLong$37([J)Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$boxSupplier$45(Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$castingIdentity$2(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$counting$17(Ljava/lang/Object;)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$filtering$16(Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$flatMapping$14(Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$flatMapping$15(Ljava/util/function/Function;Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingBy$52(Ljava/util/function/Supplier;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingBy$53(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/Map;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingBy$54(Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingBy$55(Ljava/util/function/Function;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$56(Ljava/util/function/Supplier;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$57(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/concurrent/ConcurrentMap;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$58(Ljava/util/function/Supplier;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$59(Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/concurrent/ConcurrentMap;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$60(Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$groupingByConcurrent$61(Ljava/util/function/Function;Ljava/util/concurrent/ConcurrentMap;)Ljava/util/concurrent/ConcurrentMap;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$joining$10(Ljava/lang/StringBuilder;Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$joining$11(Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/StringJoiner;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$mapMerger$12(Ljava/util/function/BinaryOperator;Ljava/util/Map;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$mapping$13(Ljava/util/function/BiConsumer;Ljava/util/function/Function;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$partitioningBy$62(Ljava/util/function/BiConsumer;Ljava/util/function/Predicate;Ljava/util/stream/Collectors$Partition;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$partitioningBy$63(Ljava/util/function/BinaryOperator;Ljava/util/stream/Collectors$Partition;Ljava/util/stream/Collectors$Partition;)Ljava/util/stream/Collectors$Partition;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$partitioningBy$64(Ljava/util/stream/Collector;)Ljava/util/stream/Collectors$Partition;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$partitioningBy$65(Ljava/util/stream/Collector;Ljava/util/stream/Collectors$Partition;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$42(Ljava/util/function/BinaryOperator;[Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$43(Ljava/util/function/BinaryOperator;[Ljava/lang/Object;[Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$44([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$46(Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collectors$1OptionalBox;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$47(Ljava/util/stream/Collectors$1OptionalBox;Ljava/util/stream/Collectors$1OptionalBox;)Ljava/util/stream/Collectors$1OptionalBox;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$48(Ljava/util/stream/Collectors$1OptionalBox;)Ljava/util/Optional;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$49(Ljava/util/function/BinaryOperator;Ljava/util/function/Function;[Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$50(Ljava/util/function/BinaryOperator;[Ljava/lang/Object;[Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$reducing$51([Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingDouble$74(Ljava/util/function/ToDoubleFunction;Ljava/util/DoubleSummaryStatistics;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingDouble$75(Ljava/util/DoubleSummaryStatistics;Ljava/util/DoubleSummaryStatistics;)Ljava/util/DoubleSummaryStatistics;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingInt$70(Ljava/util/function/ToIntFunction;Ljava/util/IntSummaryStatistics;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingInt$71(Ljava/util/IntSummaryStatistics;Ljava/util/IntSummaryStatistics;)Ljava/util/IntSummaryStatistics;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingLong$72(Ljava/util/function/ToLongFunction;Ljava/util/LongSummaryStatistics;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summarizingLong$73(Ljava/util/LongSummaryStatistics;Ljava/util/LongSummaryStatistics;)Ljava/util/LongSummaryStatistics;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingDouble$26()[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingDouble$27(Ljava/util/function/ToDoubleFunction;[DLjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingDouble$28([D[D)[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingDouble$29([D)Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingInt$18()[I": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingInt$19(Ljava/util/function/ToIntFunction;[ILjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingInt$20([I[I)[I": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingInt$21([I)Ljava/lang/Integer;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingLong$22()[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingLong$23(Ljava/util/function/ToLongFunction;[JLjava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingLong$24([J[J)[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$summingLong$25([J)Ljava/lang/Long;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toCollection$3(Ljava/util/Collection;Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toConcurrentMap$69(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;Ljava/util/concurrent/ConcurrentMap;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toList$4(Ljava/util/List;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toMap$68(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;Ljava/util/Map;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toSet$7(Ljava/util/Set;Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableList$5(Ljava/util/List;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableList$6(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableMap$66(Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableMap$67(Ljava/util/HashMap;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableSet$8(Ljava/util/Set;Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toUnmodifiableSet$9(Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$uniqKeysMapAccumulator$1(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/Map;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$uniqKeysMapMerger$0(Ljava/util/Map;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mapMerger(Ljava/util/function/BinaryOperator;)Ljava/util/function/BinaryOperator;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mapping(Ljava/util/function/Function;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "maxBy(Ljava/util/Comparator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "minBy(Ljava/util/Comparator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "partitioningBy(Ljava/util/function/Predicate;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "partitioningBy(Ljava/util/function/Predicate;Ljava/util/stream/Collector;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reducing(Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reducing(Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reducing(Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sumWithCompensation([DD)[D": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "summarizingDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summarizingInt(Ljava/util/function/ToIntFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summarizingLong(Ljava/util/function/ToLongFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summingDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summingInt(Ljava/util/function/ToIntFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summingLong(Ljava/util/function/ToLongFunction;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toCollection(Ljava/util/function/Supplier;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toConcurrentMap(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toConcurrentMap(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toConcurrentMap(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;Ljava/util/function/Supplier;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toList()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMap(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMap(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toMap(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;Ljava/util/function/Supplier;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toSet()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnmodifiableList()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnmodifiableMap(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnmodifiableMap(Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BinaryOperator;)Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUnmodifiableSet()Ljava/util/stream/Collector;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "uniqKeysMapAccumulator(Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/function/BiConsumer;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uniqKeysMapMerger()Ljava/util/function/BinaryOperator;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DistinctOps$1$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DistinctOps$1$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DistinctOps$1$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DistinctOps$1$1;": {"fields": {"lastSeen:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "seenNull:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/DistinctOps$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DistinctOps$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DistinctOps$1$2;": {"fields": {"seen:Ljava/util/Set;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/DistinctOps$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DistinctOps$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DistinctOps$1;": {"fields": {}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$opEvaluateParallel$0(Ljava/util/concurrent/atomic/AtomicBoolean;Ljava/util/concurrent/ConcurrentHashMap;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reduce(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/stream/Node;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DistinctOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/stream/AbstractPipeline;)Ljava/util/stream/ReferencePipeline;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda10;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda11;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(D)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda13;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda14;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda15;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(DD)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(Ljava/lang/Object;)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsDouble(DD)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda5;": {"fields": {"f$0:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(D)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda7;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda8;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$$ExternalSyntheticLambda9;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$1$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$1;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$2;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/DoubleFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$2$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$2;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$3$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$3;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$3;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/DoubleToIntFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleToIntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$4$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$4;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$5$1$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/DoublePipeline$5$1;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$5$1;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$4;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/DoubleToLongFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleToLongFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$5$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$5;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$5;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$accept$0$java-util-stream-DoublePipeline$5$1(D)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$5;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/DoubleFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$6;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$7$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$7;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$7;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$7;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoublePredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$8$1;": {"fields": {"this$1:Ljava/util/stream/DoublePipeline$8;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline$8;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$8;": {"fields": {"this$0:Ljava/util/stream/DoublePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$action:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/DoublePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/DoubleConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoublePipeline$Head;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$StatelessOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline$StatefulOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoublePipeline;": {"fields": {}, "methods": {"-$$Nest$smadapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/stream/Sink;)Ljava/util/function/DoubleConsumer;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$average$4()[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$5([DD)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$6([D[D)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$collect$8(Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$count$7(D)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$distinct$0(Ljava/lang/Double;)D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$sum$1()[D": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$sum$2([DD)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$sum$3([D[D)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toArray$9(I)[Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjDoubleConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "evaluateToNode(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter(Ljava/util/function/DoublePredicate;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/DoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachWithCancel(Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOutputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "limit(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/DoubleToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/DoubleToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/DoubleFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/DoubleConsumer;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/DoubleBinaryOperator;)Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/DoubleSummaryStatistics;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[D": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/DoubleStream$1;": {"fields": {"t:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$f:Ljava/util/function/DoubleUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:D": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(DLjava/util/function/DoubleUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextDouble()D": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoubleStream$Builder;": {"fields": {}, "methods": {"accept(D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(D)Ljava/util/stream/DoubleStream$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/DoubleStream;": {"fields": {}, "methods": {"builder()Ljava/util/stream/DoubleStream$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "concat(Ljava/util/stream/DoubleStream;Ljava/util/stream/DoubleStream;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "empty()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generate(Ljava/util/function/DoubleSupplier;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterate(DLjava/util/function/DoubleUnaryOperator;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(D)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([D)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjDoubleConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/function/DoublePredicate;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/DoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/util/function/DoubleUnaryOperator;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/DoubleToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/DoubleToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/DoubleFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/DoublePredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/DoubleConsumer;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(DLjava/util/function/DoubleBinaryOperator;)D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/DoubleBinaryOperator;)Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/DoubleSummaryStatistics;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[D": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda5;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$$ExternalSyntheticLambda7;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps$FindOp;": {"fields": {"emptyValue:Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mustFindFirst:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "presentPredicate:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shape:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sinkSupplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ZLjava/util/stream/StreamShape;Ljava/lang/Object;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOpFlags()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindSink$OfDouble;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Double;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindSink$OfInt;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Integer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindSink$OfLong;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Long;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindSink$OfRef;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindSink;": {"fields": {"hasValue:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/FindOps$FindTask;": {"fields": {"op:Ljava/util/stream/FindOps$FindOp;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/FindOps$FindOp;Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/FindOps$FindTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "foundResult(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEmptyResult()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/FindOps$FindTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/FindOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ForEachOps$ForEachOp$OfDouble;": {"fields": {"consumer:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleConsumer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ForEachOps$ForEachOp$OfInt;": {"fields": {"consumer:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntConsumer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ForEachOps$ForEachOp$OfLong;": {"fields": {"consumer:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongConsumer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ForEachOps$ForEachOp$OfRef;": {"fields": {"consumer:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ForEachOps$ForEachOp;": {"fields": {"ordered:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Z)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOpFlags()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ForEachOps$ForEachOrderedTask$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ForEachOps$ForEachOrderedTask;": {"fields": {"action:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "completionMap:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helper:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftPredecessor:Ljava/util/stream/ForEachOps$ForEachOrderedTask;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node:Ljava/util/stream/Node;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSize:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ForEachOps$ForEachOrderedTask;Ljava/util/Spliterator;Ljava/util/stream/ForEachOps$ForEachOrderedTask;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doCompute(Ljava/util/stream/ForEachOps$ForEachOrderedTask;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$doCompute$0(I)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ForEachOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/function/DoubleConsumer;Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/function/IntConsumer;Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/function/LongConsumer;Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/function/Consumer;Z)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(Ljava/lang/Object;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ForEachOps$ForEachTask;": {"fields": {"helper:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sink:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSize:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ForEachOps$ForEachTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda10;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(I)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda11;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda13;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda5;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda8;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda7;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$1$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$10;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$action:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$$ExternalSyntheticLambda9;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsInt(II)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$10$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$10;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$10;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$1;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$2$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$2;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$3;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$4$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$4;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$2;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$3$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$3;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$4;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/IntFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$5;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/IntToLongFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntToLongFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$5$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$5;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$5;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$6;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/IntToDoubleFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntToDoubleFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$6$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$6;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$6;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$7$1$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/IntPipeline$7$1;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$7$1;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$7$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$7;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$7;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$accept$0$java-util-stream-IntPipeline$7$1(I)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$9;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntPredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$9$1;": {"fields": {"this$1:Ljava/util/stream/IntPipeline$9;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline$9;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$8;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$7;": {"fields": {"this$0:Ljava/util/stream/IntPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/IntFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/IntPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/IntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntPipeline$Head;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$StatefulOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline$StatelessOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntPipeline;": {"fields": {}, "methods": {"-$$Nest$smadapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/stream/Sink;)Ljava/util/function/IntConsumer;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$average$2()[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$3([JI)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$4([J[J)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$collect$5(Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$count$1(I)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$distinct$0(Ljava/lang/Integer;)I": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toArray$6(I)[Ljava/lang/Integer;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleStream()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLongStream()Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjIntConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "evaluateToNode(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter(Ljava/util/function/IntPredicate;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/IntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachWithCancel(Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOutputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "limit(J)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map(Ljava/util/function/IntUnaryOperator;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/IntToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/IntToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/IntFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/IntConsumer;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/IntBinaryOperator;)Ljava/util/OptionalInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/IntStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/IntSummaryStatistics;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/IntStream$1;": {"fields": {"t:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$f:Ljava/util/function/IntUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ILjava/util/function/IntUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextInt()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntStream$Builder;": {"fields": {}, "methods": {"accept(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(I)Ljava/util/stream/IntStream$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(J)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda10;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/IntStream;": {"fields": {}, "methods": {"builder()Ljava/util/stream/IntStream$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "concat(Ljava/util/stream/IntStream;Ljava/util/stream/IntStream;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "empty()Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generate(Ljava/util/function/IntSupplier;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterate(ILjava/util/function/IntUnaryOperator;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(I)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([I)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(II)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeClosed(II)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleStream()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asLongStream()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjIntConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/function/IntPredicate;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/IntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(J)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/util/function/IntUnaryOperator;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/IntToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/IntToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/IntFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/IntPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/IntConsumer;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(ILjava/util/function/IntBinaryOperator;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/IntBinaryOperator;)Ljava/util/OptionalInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/IntSummaryStatistics;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda12;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda11;": {"fields": {"f$0:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda13;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda4;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda3;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda5;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda7;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda6;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda9;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$2$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$2;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$$ExternalSyntheticLambda8;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$2;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$1;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$1$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$4$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$4;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$3;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/LongFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$3$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$3;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$4;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/LongToIntFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongToIntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$5$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$5;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$5;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$6$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$6;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$6;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$accept$0$java-util-stream-LongPipeline$6$1(J)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$6$1$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/LongPipeline$6$1;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$6$1;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$5;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/LongToDoubleFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongToDoubleFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$7;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$6;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/LongFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$8$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$8;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$8;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$8;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongPredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$9$1;": {"fields": {"this$1:Ljava/util/stream/LongPipeline$9;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline$9;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$9;": {"fields": {"this$0:Ljava/util/stream/LongPipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$action:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/LongPipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/LongConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongPipeline$StatelessOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$StatefulOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline$Head;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parallel()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongStream$1;": {"fields": {"t:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$f:Ljava/util/function/LongUnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/LongUnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongPipeline;": {"fields": {}, "methods": {"-$$Nest$smadapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfLong;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/Spliterator;)Ljava/util/Spliterator$OfLong;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "adapt(Ljava/util/stream/Sink;)Ljava/util/function/LongConsumer;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$average$1()[J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$2([JJ)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$average$3([J[J)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$collect$5(Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$count$4(J)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$distinct$0(Ljava/lang/Long;)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toArray$6(I)[Ljava/lang/Long;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleStream()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjLongConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "evaluateToNode(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter(Ljava/util/function/LongPredicate;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/LongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachWithCancel(Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOutputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "limit(J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map(Ljava/util/function/LongUnaryOperator;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/LongToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/LongToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/LongFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/LongConsumer;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/LongBinaryOperator;)Ljava/util/OptionalLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/LongStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/LongSummaryStatistics;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/LongStream$Builder;": {"fields": {}, "methods": {"accept(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(J)Ljava/util/stream/LongStream$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/LongStream;": {"fields": {}, "methods": {"builder()Ljava/util/stream/LongStream$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "concat(Ljava/util/stream/LongStream;Ljava/util/stream/LongStream;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "empty()Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generate(Ljava/util/function/LongSupplier;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterate(JLjava/util/function/LongUnaryOperator;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "range(JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rangeClosed(JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asDoubleStream()Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "average()Ljava/util/OptionalDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "boxed()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/ObjLongConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/function/LongPredicate;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/OptionalLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/OptionalLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/LongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/util/function/LongUnaryOperator;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/LongToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/LongToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToObj(Ljava/util/function/LongFunction;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max()Ljava/util/OptionalLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min()Ljava/util/OptionalLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/LongPredicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parallel()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/LongConsumer;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(JLjava/util/function/LongBinaryOperator;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/LongBinaryOperator;)Ljava/util/OptionalLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sequential()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sum()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "summaryStatistics()Ljava/util/LongSummaryStatistics;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/DoublePredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/Predicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/IntPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$$ExternalSyntheticLambda3;": {"fields": {"f$0:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/LongPredicate;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$1MatchSink;": {"fields": {"val$matchKind:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/Predicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$2MatchSink;": {"fields": {"val$matchKind:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/IntPredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/IntPredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$3MatchSink;": {"fields": {"val$matchKind:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/LongPredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/LongPredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$4MatchSink;": {"fields": {"val$matchKind:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/DoublePredicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/DoublePredicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/MatchOps$MatchKind;": {"fields": {"$VALUES:[Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ANY:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NONE:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shortCircuitResult:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stopOnPredicateMatches:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetshortCircuitResult(Ljava/util/stream/MatchOps$MatchKind;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetstopOnPredicateMatches(Ljava/util/stream/MatchOps$MatchKind;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IZZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/MatchOps$MatchKind;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljava/util/stream/MatchOps$MatchKind;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/MatchOps$BooleanTerminalSink;": {"fields": {"stop:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchKind;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndClearState()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/MatchOps$MatchOp;": {"fields": {"inputShape:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchKind:Ljava/util/stream/MatchOps$MatchKind;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sinkSupplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOpFlags()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/MatchOps$MatchTask;": {"fields": {"op:Ljava/util/stream/MatchOps$MatchOp;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/MatchOps$MatchOp;Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/MatchOps$MatchTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Boolean;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEmptyResult()Ljava/lang/Boolean;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEmptyResult()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/MatchOps$MatchTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/MatchOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$makeDouble$3(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/DoublePredicate;)Ljava/util/stream/MatchOps$BooleanTerminalSink;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$makeInt$1(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/IntPredicate;)Ljava/util/stream/MatchOps$BooleanTerminalSink;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$makeLong$2(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/LongPredicate;)Ljava/util/stream/MatchOps$BooleanTerminalSink;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$makeRef$0(Ljava/util/stream/MatchOps$MatchKind;Ljava/util/function/Predicate;)Ljava/util/stream/MatchOps$BooleanTerminalSink;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/function/DoublePredicate;Ljava/util/stream/MatchOps$MatchKind;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/function/IntPredicate;Ljava/util/stream/MatchOps$MatchKind;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/function/LongPredicate;Ljava/util/stream/MatchOps$MatchKind;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/function/Predicate;Ljava/util/stream/MatchOps$MatchKind;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Node$Builder$OfDouble;": {"fields": {}, "methods": {"build()Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$Builder$OfInt;": {"fields": {}, "methods": {"build()Ljava/util/stream/Node$OfInt;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$Builder$OfLong;": {"fields": {}, "methods": {"build()Ljava/util/stream/Node$OfLong;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$Builder;": {"fields": {}, "methods": {"build()Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$OfDouble$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Node$OfInt;": {"fields": {}, "methods": {"lambda$truncate$0(I)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Integer;I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfInt;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$OfDouble;": {"fields": {}, "methods": {"lambda$truncate$0(D)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Double;I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[D": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node$OfLong$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Node$OfInt$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Node$OfPrimitive;": {"fields": {}, "methods": {"asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChild(I)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChild(I)Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Node;": {"fields": {}, "methods": {"lambda$truncate$0(Ljava/lang/Object;)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChild(I)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getChildCount()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$AbstractConcNode;": {"fields": {"left:Ljava/util/stream/Node;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "right:Ljava/util/stream/Node;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Node;Ljava/util/stream/Node;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChild(I)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChildCount()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ArrayNode;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "curSize:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/IntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectionNode;": {"fields": {"c:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Collection;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfDouble$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Node$OfLong;": {"fields": {}, "methods": {"lambda$truncate$0(J)V": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Long;I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfLong;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfInt$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfDouble$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfInt;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$1;": {"fields": {"$SwitchMap$java$util$stream$StreamShape:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfLong;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfLong$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfLong$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfInt$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask;": {"fields": {"builderFactory:Ljava/util/function/LongFunction;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "concFactory:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helper:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Nodes$CollectorTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/LongFunction;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/util/stream/Node;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/Nodes$CollectorTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$ConcNode$OfInt;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfInt;Ljava/util/stream/Node$OfInt;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfRef;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/function/IntFunction;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$new$0(Ljava/util/function/IntFunction;J)Ljava/util/stream/Node$Builder;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$CollectorTask$OfRef$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$CollectorTask$OfRef$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/IntFunction;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntFunction;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$ConcNode$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfPrimitive;Ljava/util/stream/Node$OfPrimitive;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChild(I)Ljava/util/stream/Node$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$ConcNode$OfLong;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfLong;Ljava/util/stream/Node$OfLong;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ConcNode$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfDouble;Ljava/util/stream/Node$OfDouble;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ConcNode;": {"fields": {}, "methods": {"(Ljava/util/stream/Node;Ljava/util/stream/Node;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(JJLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$DoubleSpinedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "building:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[D": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([DI)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$DoubleFixedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$DoubleArrayNode;": {"fields": {"array:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "curSize:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([D)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[D": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([DI)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$EmptyNode$OfInt;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$EmptyNode$OfDouble;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[D": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$EmptyNode$OfLong;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$EmptyNode$OfRef-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Nodes$EmptyNode$OfRef;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$EmptyNode$OfRef-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$IntArrayNode;": {"fields": {"array:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "curSize:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([II)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$FixedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JLjava/util/function/IntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$EmptyNode;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$IntFixedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$IntSpinedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "building:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([II)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfDouble;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator$OfInt;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfInt;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator$OfLong;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfLong;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator$OfRef;": {"fields": {}, "methods": {"(Ljava/util/stream/Node;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfPrimitive;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$LongArrayNode;": {"fields": {"array:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "curSize:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([JI)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$InternalNodeSpliterator;": {"fields": {"curChildIndex:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "curNode:Ljava/util/stream/Node;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastNodeSpliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvanceSpliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvanceStack:Ljava/util/Deque;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Node;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findNextLeafNode(Ljava/util/Deque;)Ljava/util/stream/Node;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initStack()Ljava/util/Deque;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initTryAdvance()Z": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$LongSpinedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "building:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveArray()[J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([JI)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$LongFixedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$SizedCollectorTask$OfDouble;": {"fields": {"array:[D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;Ljava/util/stream/PipelineHelper;[D)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$SizedCollectorTask$OfDouble;Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask$OfDouble;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$SizedCollectorTask$OfInt;": {"fields": {"array:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;Ljava/util/stream/PipelineHelper;[I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$SizedCollectorTask$OfInt;Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask$OfInt;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$SizedCollectorTask$OfLong;": {"fields": {"array:[J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;Ljava/util/stream/PipelineHelper;[J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$SizedCollectorTask$OfLong;Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask$OfLong;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$SizedCollectorTask$OfRef;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;Ljava/util/stream/PipelineHelper;[Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$SizedCollectorTask$OfRef;Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask$OfRef;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$SizedCollectorTask;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "helper:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSize:J": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;Ljava/util/stream/PipelineHelper;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$SizedCollectorTask;Ljava/util/Spliterator;JJI)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeChild(Ljava/util/Spliterator;JJ)Ljava/util/stream/Nodes$SizedCollectorTask;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$SpinedNodeBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "building:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfDouble-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Nodes$ToArrayTask$OfInt-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Nodes$ToArrayTask$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfDouble;[DI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Node$OfDouble;[DILjava/util/stream/Nodes$ToArrayTask$OfDouble-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfLong;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfLong;[JI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Node$OfLong;[JILjava/util/stream/Nodes$ToArrayTask$OfLong-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfLong-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Nodes$ToArrayTask$OfInt;": {"fields": {}, "methods": {"(Ljava/util/stream/Node$OfInt;[II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Node$OfInt;[IILjava/util/stream/Nodes$ToArrayTask$OfInt-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfRef-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Nodes$ToArrayTask$OfRef;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Node;[Ljava/lang/Object;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Node;[Ljava/lang/Object;ILjava/util/stream/Nodes$ToArrayTask$OfRef-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$ToArrayTask$OfRef;Ljava/util/stream/Node;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyNodeToArray()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(II)Ljava/util/stream/Nodes$ToArrayTask$OfRef;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(II)Ljava/util/stream/Nodes$ToArrayTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfPrimitive;": {"fields": {"array:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Node$OfPrimitive;Ljava/lang/Object;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Node$OfPrimitive;Ljava/lang/Object;ILjava/util/stream/Nodes$ToArrayTask$OfPrimitive-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$ToArrayTask$OfPrimitive;Ljava/util/stream/Node$OfPrimitive;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyNodeToArray()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(II)Ljava/util/stream/Nodes$ToArrayTask$OfPrimitive;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(II)Ljava/util/stream/Nodes$ToArrayTask;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask$OfPrimitive-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/PipelineHelper;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto(Ljava/util/stream/Sink;Ljava/util/Spliterator;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyIntoWithCancel(Ljava/util/stream/Sink;Ljava/util/Spliterator;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluate(Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exactOutputSizeIfKnown(Ljava/util/Spliterator;)J": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSourceShape()Ljava/util/stream/StreamShape;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getStreamAndOpFlags()I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapAndCopyInto(Ljava/util/stream/Sink;Ljava/util/Spliterator;)Ljava/util/stream/Sink;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapSink(Ljava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrapSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes;": {"fields": {"BAD_SIZE:Ljava/lang/String;": {"value": "\"Stream size exceeds max array size\"", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_DOUBLE_ARRAY:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_DOUBLE_NODE:Ljava/util/stream/Node$OfDouble;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_INT_ARRAY:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_INT_NODE:Ljava/util/stream/Node$OfInt;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_LONG_ARRAY:[J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_LONG_NODE:Ljava/util/stream/Node$OfLong;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_NODE:Ljava/util/stream/Node;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_ARRAY_SIZE:J": {"value": "0x7ffffff7L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetEMPTY_DOUBLE_ARRAY()[D": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetEMPTY_INT_ARRAY()[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetEMPTY_LONG_ARRAY()[J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "builder()Ljava/util/stream/Node$Builder;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "builder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "collect(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "collectDouble(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "collectInt(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)Ljava/util/stream/Node$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "collectLong(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)Ljava/util/stream/Node$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "conc(Ljava/util/stream/StreamShape;Ljava/util/stream/Node;Ljava/util/stream/Node;)Ljava/util/stream/Node;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doubleBuilder()Ljava/util/stream/Node$Builder$OfDouble;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doubleBuilder(J)Ljava/util/stream/Node$Builder$OfDouble;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyNode(Ljava/util/stream/StreamShape;)Ljava/util/stream/Node;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flatten(Ljava/util/stream/Node;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flattenDouble(Ljava/util/stream/Node$OfDouble;)Ljava/util/stream/Node$OfDouble;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flattenInt(Ljava/util/stream/Node$OfInt;)Ljava/util/stream/Node$OfInt;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flattenLong(Ljava/util/stream/Node$OfLong;)Ljava/util/stream/Node$OfLong;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intBuilder()Ljava/util/stream/Node$Builder$OfInt;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intBuilder(J)Ljava/util/stream/Node$Builder$OfInt;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longBuilder()Ljava/util/stream/Node$Builder$OfLong;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "longBuilder(J)Ljava/util/stream/Node$Builder$OfLong;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node([D)Ljava/util/stream/Node$OfDouble;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node([I)Ljava/util/stream/Node$OfInt;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node([J)Ljava/util/stream/Node$OfLong;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node(Ljava/util/Collection;)Ljava/util/stream/Node;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "node([Ljava/lang/Object;)Ljava/util/stream/Node;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Nodes$ToArrayTask;": {"fields": {"node:Ljava/util/stream/Node;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Node;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Nodes$ToArrayTask;Ljava/util/stream/Node;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compute()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "copyNodeToArray()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(II)Ljava/util/stream/Nodes$ToArrayTask;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$10ReducingSink;": {"fields": {"val$accumulator:Ljava/util/function/ObjLongConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/ObjLongConsumer;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$10ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$10;": {"fields": {"val$accumulator:Ljava/util/function/ObjLongConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;Ljava/util/function/ObjLongConsumer;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$10ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$11;": {"fields": {"val$identity:D": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/DoubleBinaryOperator;D)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$11ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$12;": {"fields": {"val$operator:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$12ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$12ReducingSink;": {"fields": {"empty:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:D": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$12ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$11ReducingSink;": {"fields": {"state:D": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$identity:D": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/DoubleBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(DLjava/util/function/DoubleBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$11ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Double;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReduceOps$1;": {"fields": {"val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;Ljava/util/function/BiFunction;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$1ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$13ReducingSink;": {"fields": {"val$accumulator:Ljava/util/function/ObjDoubleConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/ObjDoubleConsumer;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$13ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$13;": {"fields": {"val$accumulator:Ljava/util/function/ObjDoubleConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;Ljava/util/function/ObjDoubleConsumer;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$13ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$1ReducingSink;": {"fields": {"val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$reducer:Ljava/util/function/BiFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$1ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$2;": {"fields": {"val$operator:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$2ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$2ReducingSink;": {"fields": {"empty:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$2ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/Optional;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$3;": {"fields": {"val$accumulator:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$collector:Ljava/util/stream/Collector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;Ljava/util/function/BiConsumer;Ljava/util/function/Supplier;Ljava/util/stream/Collector;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOpFlags()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$3ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$3ReducingSink;": {"fields": {"val$accumulator:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$3ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$4ReducingSink;": {"fields": {"val$accumulator:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$reducer:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seedFactory:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$4ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$4;": {"fields": {"val$accumulator:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$reducer:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seedFactory:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$4ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$6;": {"fields": {"val$operator:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$6ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$5ReducingSink;": {"fields": {"state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$identity:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ILjava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$5ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReduceOps$5;": {"fields": {"val$identity:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/IntBinaryOperator;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$5ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$6ReducingSink;": {"fields": {"empty:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/IntBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$6ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$7;": {"fields": {"val$accumulator:Ljava/util/function/ObjIntConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/BinaryOperator;Ljava/util/function/ObjIntConsumer;Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$7ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$7ReducingSink;": {"fields": {"val$accumulator:Ljava/util/function/ObjIntConsumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$combiner:Ljava/util/function/BinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;Ljava/util/function/ObjIntConsumer;Ljava/util/function/BinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$7ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$8;": {"fields": {"val$identity:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/LongBinaryOperator;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$8ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$9ReducingSink;": {"fields": {"empty:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$9ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/OptionalLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$9;": {"fields": {"val$operator:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;Ljava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$9ReducingSink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$8ReducingSink;": {"fields": {"state:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$identity:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$operator:Ljava/util/function/LongBinaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/LongBinaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$8ReducingSink;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Long;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReduceOps$AccumulatingSink;": {"fields": {}, "methods": {"combine(Ljava/util/stream/ReduceOps$AccumulatingSink;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$Box;": {"fields": {"state:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReduceOps$ReduceOp;": {"fields": {"inputShape:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamShape;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSink()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReduceOps$ReduceTask;": {"fields": {"op:Ljava/util/stream/ReduceOps$ReduceOp;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReduceOps$ReduceOp;Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/ReduceOps$ReduceTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/util/stream/ReduceOps$AccumulatingSink;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/ReduceOps$ReduceTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReduceOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(DLjava/util/function/DoubleBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/function/DoubleBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/function/Supplier;Ljava/util/function/ObjDoubleConsumer;Ljava/util/function/BinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(ILjava/util/function/IntBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/function/IntBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/function/Supplier;Ljava/util/function/ObjIntConsumer;Ljava/util/function/BinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(JLjava/util/function/LongBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/function/LongBinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/function/Supplier;Ljava/util/function/ObjLongConsumer;Ljava/util/function/BinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/BinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/function/BinaryOperator;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/stream/Collector;)Ljava/util/stream/TerminalOp;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$$ExternalSyntheticLambda2;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyAsLong(Ljava/lang/Object;)J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/function/BiConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/BiConsumer;Ljava/lang/Object;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$10;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$10$1;": {"fields": {"downstreamAsLong:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/stream/ReferencePipeline$10;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$10;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$11$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$11;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$11;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$11;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$action:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Consumer;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$1;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$2$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$2;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$2;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$predicate:Ljava/util/function/Predicate;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Predicate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$3$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$3;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$4;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/ToIntFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/ToIntFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$4$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$4;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$3;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$6;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/ToDoubleFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/ToDoubleFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$6$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$6;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$6;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$5;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/ToLongFunction;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/ToLongFunction;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$5$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$5;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$5;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/ReferencePipeline$7;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$7$1;": {"fields": {"this$1:Ljava/util/stream/ReferencePipeline$7;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$7;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$8;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$Head;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$9;": {"fields": {"this$0:Ljava/util/stream/ReferencePipeline;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$mapper:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline;Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;ILjava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$StatefulOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$9$1;": {"fields": {"downstreamAsDouble:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/stream/ReferencePipeline$9;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$9;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$8$1;": {"fields": {"downstreamAsInt:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Ljava/util/stream/ReferencePipeline$8;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/ReferencePipeline$8;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/function/Supplier;IZ)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lambda$collect$1(Ljava/util/function/BiConsumer;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$count$2(Ljava/lang/Object;)J": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$toArray$0(I)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/stream/Collector;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "evaluateToNode(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;ZLjava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "filter(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/Optional;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/Optional;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/Function;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToDouble(Ljava/util/function/Function;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToInt(Ljava/util/function/Function;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToLong(Ljava/util/function/Function;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachWithCancel(Ljava/util/Spliterator;Ljava/util/stream/Sink;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOutputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lazySpliterator(Ljava/util/function/Supplier;)Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "limit(J)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeNodeBuilder(JLjava/util/function/IntFunction;)Ljava/util/stream/Node$Builder;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "map(Ljava/util/function/Function;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/ToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/ToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/util/Comparator;)Ljava/util/Optional;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/util/Comparator;)Ljava/util/Optional;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/Consumer;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/BinaryOperator;)Ljava/util/Optional;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted(Ljava/util/Comparator;)Ljava/util/stream/Stream;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/BaseStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unordered()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/ReferencePipeline$StatelessOp;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opIsStateful()Z": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$ChainedInt;": {"fields": {"downstream:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$ChainedDouble;": {"fields": {"downstream:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$ChainedReference;": {"fields": {"downstream:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$ChainedLong;": {"fields": {"downstream:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$OfInt;": {"fields": {}, "methods": {"accept(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Integer;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Sink$OfDouble;": {"fields": {}, "methods": {"accept(D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Double;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Sink;": {"fields": {}, "methods": {"accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/Sink$OfLong;": {"fields": {}, "methods": {"accept(J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Long;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps$2$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps$1;": {"fields": {"val$limit:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$skip:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;IJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unorderedSkipLimitSpliterator(Ljava/util/Spliterator;JJJ)Ljava/util/Spliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$1$1;": {"fields": {"m:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "n:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SliceOps$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SliceOps$1;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$3$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps$2;": {"fields": {"val$limit:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$skip:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;IJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$opEvaluateParallelLazy$0(I)[Ljava/lang/Integer;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unorderedSkipLimitSpliterator(Ljava/util/Spliterator$OfInt;JJJ)Ljava/util/Spliterator$OfInt;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$2$1;": {"fields": {"m:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "n:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SliceOps$2;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SliceOps$2;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$3$1;": {"fields": {"m:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "n:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SliceOps$3;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SliceOps$3;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$3;": {"fields": {"val$limit:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$skip:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;IJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$opEvaluateParallelLazy$0(I)[Ljava/lang/Long;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unorderedSkipLimitSpliterator(Ljava/util/Spliterator$OfLong;JJJ)Ljava/util/Spliterator$OfLong;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$4$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(I)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps$4$1;": {"fields": {"m:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "n:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SliceOps$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SliceOps$4;Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$4;": {"fields": {"val$limit:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$skip:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/StreamShape;IJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$opEvaluateParallelLazy$0(I)[Ljava/lang/Double;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallelLazy(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unorderedSkipLimitSpliterator(Ljava/util/Spliterator$OfDouble;JJJ)Ljava/util/Spliterator$OfDouble;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$5;": {"fields": {"$SwitchMap$java$util$stream$StreamShape:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SliceOps$SliceTask;": {"fields": {"completed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "generator:Ljava/util/function/IntFunction;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "op:Ljava/util/stream/AbstractPipeline;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetOffset:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSize:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thisNodeSize:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/SliceOps$SliceTask;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "completedSize(J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doTruncate(Ljava/util/stream/Node;)Ljava/util/stream/Node;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeftCompleted(J)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLeaf()Ljava/util/stream/Node;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEmptyResult()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEmptyResult()Ljava/util/stream/Node;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/AbstractTask;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeChild(Ljava/util/Spliterator;)Ljava/util/stream/SliceOps$SliceTask;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCompletion(Ljava/util/concurrent/CountedCompleter;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SliceOps;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smcalcSize(JJJ)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smcalcSliceFence(JJ)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smcastingArray()Ljava/util/function/IntFunction;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsliceSpliterator(Ljava/util/stream/StreamShape;Ljava/util/Spliterator;JJ)Ljava/util/Spliterator;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "calcSize(JJJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "calcSliceFence(JJ)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "castingArray()Ljava/util/function/IntFunction;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flags(J)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$castingArray$0(I)[Ljava/lang/Object;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/stream/AbstractPipeline;JJ)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/stream/AbstractPipeline;JJ)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/stream/AbstractPipeline;JJ)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/stream/AbstractPipeline;JJ)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sliceSpliterator(Ljava/util/stream/StreamShape;Ljava/util/Spliterator;JJ)Ljava/util/Spliterator;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$AbstractDoubleSortingSink;": {"fields": {"cancellationWasRequested:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$AbstractIntSortingSink;": {"fields": {"cancellationWasRequested:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$AbstractLongSortingSink;": {"fields": {"cancellationWasRequested:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$AbstractRefSortingSink;": {"fields": {"cancellationWasRequested:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;Ljava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancellationRequested()Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$DoubleSortingSink;": {"fields": {"b:Ljava/util/stream/SpinedBuffer$OfDouble;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$IntSortingSink;": {"fields": {"b:Ljava/util/stream/SpinedBuffer$OfInt;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$LongSortingSink;": {"fields": {"b:Ljava/util/stream/SpinedBuffer$OfLong;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/stream/AbstractPipeline;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$OfInt;": {"fields": {}, "methods": {"(Ljava/util/stream/AbstractPipeline;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$OfLong;": {"fields": {}, "methods": {"(Ljava/util/stream/AbstractPipeline;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$OfRef;": {"fields": {"comparator:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNaturalSort:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/AbstractPipeline;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/AbstractPipeline;Ljava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opEvaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Ljava/util/function/IntFunction;)Ljava/util/stream/Node;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opWrapSink(ILjava/util/stream/Sink;)Ljava/util/stream/Sink;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$RefSortingSink$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/Sink;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SortedOps$RefSortingSink;": {"fields": {"list:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;Ljava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$SizedDoubleSortingSink;": {"fields": {"array:[D": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$SizedIntSortingSink;": {"fields": {"array:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$SizedLongSortingSink;": {"fields": {"array:[J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps$SizedRefSortingSink;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/Sink;Ljava/util/Comparator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin(J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SortedOps;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDouble(Ljava/util/stream/AbstractPipeline;)Ljava/util/stream/DoubleStream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(Ljava/util/stream/AbstractPipeline;)Ljava/util/stream/IntStream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(Ljava/util/stream/AbstractPipeline;)Ljava/util/stream/LongStream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/stream/AbstractPipeline;)Ljava/util/stream/Stream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeRef(Ljava/util/stream/AbstractPipeline;Ljava/util/Comparator;)Ljava/util/stream/Stream;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/SpinedBuffer$1Splitr;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastSpineElementFence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastSpineIndex:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "splChunk:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "splElementIndex:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "splSpineIndex:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SpinedBuffer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/SpinedBuffer;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/List;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfDouble$1Splitr;": {"fields": {"this$0:Ljava/util/stream/SpinedBuffer$OfDouble;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfDouble;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne(Ljava/lang/Object;ILjava/lang/Object;)V": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne([DILjava/util/function/DoubleConsumer;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator([DII)Ljava/util/Spliterator$OfDouble;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator(Ljava/lang/Object;II)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSpliterator(IIII)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSpliterator(IIII)Ljava/util/stream/SpinedBuffer$OfDouble$1Splitr;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfDouble;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayForEach(Ljava/lang/Object;IILjava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForEach([DIILjava/util/function/DoubleConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayLength(Ljava/lang/Object;)I": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayLength([D)I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(J)D": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[D": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArrayArray(I)[Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArrayArray(I)[[D": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfInt$1Splitr;": {"fields": {"this$0:Ljava/util/stream/SpinedBuffer$OfInt;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfInt;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne(Ljava/lang/Object;ILjava/lang/Object;)V": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne([IILjava/util/function/IntConsumer;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator([III)Ljava/util/Spliterator$OfInt;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator(Ljava/lang/Object;II)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSpliterator(IIII)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSpliterator(IIII)Ljava/util/stream/SpinedBuffer$OfInt$1Splitr;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfInt;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayForEach(Ljava/lang/Object;IILjava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForEach([IIILjava/util/function/IntConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayLength(Ljava/lang/Object;)I": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayLength([I)I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(J)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArrayArray(I)[Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArrayArray(I)[[I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfLong$1Splitr;": {"fields": {"this$0:Ljava/util/stream/SpinedBuffer$OfLong;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfLong;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne(Ljava/lang/Object;ILjava/lang/Object;)V": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne([JILjava/util/function/LongConsumer;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator([JII)Ljava/util/Spliterator$OfLong;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arraySpliterator(Ljava/lang/Object;II)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSpliterator(IIII)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSpliterator(IIII)Ljava/util/stream/SpinedBuffer$OfLong$1Splitr;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfLong;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "arrayForEach(Ljava/lang/Object;IILjava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForEach([JIILjava/util/function/LongConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayLength(Ljava/lang/Object;)I": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayLength([J)I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(J)J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/PrimitiveIterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArray(I)[J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArrayArray(I)[Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newArrayArray(I)[[J": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfPrimitive$BaseSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastSpineElementFence:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lastSpineIndex:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "splChunk:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "splElementIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "splSpineIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/stream/SpinedBuffer$OfPrimitive;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/SpinedBuffer$OfPrimitive;IIII)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayForOne(Ljava/lang/Object;ILjava/lang/Object;)V": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arraySpliterator(Ljava/lang/Object;II)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newSpliterator(IIII)Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/SpinedBuffer$OfPrimitive;": {"fields": {"curChunk:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spine:[Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inflateSpine()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayForEach(Ljava/lang/Object;IILjava/lang/Object;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "arrayLength(Ljava/lang/Object;)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "asPrimitiveArray()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "capacity()J": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chunkFor(J)I": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto(Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureCapacity(J)V": {"other": [".method", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "increaseCapacity()V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newArray(I)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newArrayArray(I)[Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "preAccept()V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/SpinedBuffer;": {"fields": {"SPLITERATOR_CHARACTERISTICS:I": {"value": "0x4050", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "curChunk:[Ljava/lang/Object;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spine:[[Ljava/lang/Object;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inflateSpine()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "asArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "capacity()J": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "copyInto([Ljava/lang/Object;I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "count()J": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureCapacity(J)V": {"other": [".method", "protected", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(J)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "increaseCapacity()V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "spliterator()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Stream$1;": {"fields": {"t:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$f:Ljava/util/function/UnaryOperator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$seed:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/util/function/UnaryOperator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Stream$Builder;": {"fields": {}, "methods": {"accept(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Ljava/util/stream/Stream$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Stream;": {"fields": {}, "methods": {"builder()Ljava/util/stream/Stream$Builder;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "concat(Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "empty()Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generate(Ljava/util/function/Supplier;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterate(Ljava/lang/Object;Ljava/util/function/UnaryOperator;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of(Ljava/lang/Object;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "of([Ljava/lang/Object;)Ljava/util/stream/Stream;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "allMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "anyMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/function/Supplier;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "collect(Ljava/util/stream/Collector;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "distinct()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "filter(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAny()Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findFirst()Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMap(Ljava/util/function/Function;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToDouble(Ljava/util/function/Function;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToInt(Ljava/util/function/Function;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flatMapToLong(Ljava/util/function/Function;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachOrdered(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "limit(J)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/util/function/Function;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToDouble(Ljava/util/function/ToDoubleFunction;)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToInt(Ljava/util/function/ToIntFunction;)Ljava/util/stream/IntStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mapToLong(Ljava/util/function/ToLongFunction;)Ljava/util/stream/LongStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "max(Ljava/util/Comparator;)Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "min(Ljava/util/Comparator;)Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "noneMatch(Ljava/util/function/Predicate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/util/function/Consumer;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/lang/Object;Ljava/util/function/BinaryOperator;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reduce(Ljava/util/function/BinaryOperator;)Ljava/util/Optional;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted()Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sorted(Ljava/util/Comparator;)Ljava/util/stream/Stream;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray(Ljava/util/function/IntFunction;)[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"fields": {"map:Ljava/util/Map;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "build()Ljava/util/Map;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear(Ljava/util/stream/StreamOpFlag$Type;)Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mask(Ljava/util/stream/StreamOpFlag$Type;Ljava/lang/Integer;)Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/util/stream/StreamOpFlag$Type;)Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setAndClear(Ljava/util/stream/StreamOpFlag$Type;)Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamOpFlag$Type;": {"fields": {"$VALUES:[Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OP:Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPLITERATOR:Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STREAM:Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TERMINAL_OP:Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UPSTREAM_TERMINAL_OP:Ljava/util/stream/StreamOpFlag$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/StreamOpFlag$Type;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/util/stream/StreamOpFlag$Type;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamOpFlag;": {"fields": {"$VALUES:[Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CLEAR_BITS:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISTINCT:Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLAG_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLAG_MASK_IS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FLAG_MASK_NOT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INITIAL_OPS_VALUE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IS_DISTINCT:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IS_ORDERED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IS_SHORT_CIRCUIT:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IS_SIZED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "IS_SORTED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NOT_DISTINCT:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NOT_ORDERED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NOT_SIZED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NOT_SORTED:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OP_MASK:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ORDERED:Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRESERVE_BITS:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SET_BITS:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SHORT_CIRCUIT:Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIZED:Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SORTED:Ljava/util/stream/StreamOpFlag;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SPLITERATOR_CHARACTERISTICS_MASK:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STREAM_MASK:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TERMINAL_OP_MASK:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UPSTREAM_TERMINAL_OP_MASK:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bitPosition:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maskTable:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "preserve:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;IILjava/util/stream/StreamOpFlag$MaskBuilder;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "combineOpFlags(II)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createFlagMask()I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createMask(Ljava/util/stream/StreamOpFlag$Type;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromCharacteristics(I)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fromCharacteristics(Ljava/util/Spliterator;)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getMask(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set(Ljava/util/stream/StreamOpFlag$Type;)Ljava/util/stream/StreamOpFlag$MaskBuilder;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toCharacteristics(I)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toStreamFlags(I)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/StreamOpFlag;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/util/stream/StreamOpFlag;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canSet(Ljava/util/stream/StreamOpFlag$Type;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isCleared(I)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isKnown(I)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPreserved(I)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isStreamFlag()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamShape;": {"fields": {"$VALUES:[Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOUBLE_VALUE:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INT_VALUE:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LONG_VALUE:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "REFERENCE:Ljava/util/stream/StreamShape;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/StreamShape;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljava/util/stream/StreamShape;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"fields": {"buffer:Ljava/util/stream/AbstractSpinedBuffer;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferSink:Ljava/util/stream/Sink;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finished:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isParallel:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextToConsume:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ph:Ljava/util/stream/PipelineHelper;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pusher:Ljava/util/function/BooleanSupplier;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "spliteratorSupplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillBuffer()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doAdvance()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExactSizeIfKnown()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initPartialTraversalState()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfDouble;": {"fields": {"array:[D": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/lang/Object;J)V": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/DoubleConsumer;J)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfInt;": {"fields": {"array:[I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/lang/Object;J)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/IntConsumer;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfLong;": {"fields": {"array:[J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/lang/Object;J)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/util/function/LongConsumer;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfPrimitive;": {"fields": {"index:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEach(Ljava/lang/Object;J)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfRef;": {"fields": {"array:[Ljava/lang/Object;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEach(Ljava/util/function/Consumer;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$ArrayBuffer;": {"fields": {"index:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$DelegatingSpliterator$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DelegatingSpliterator$OfInt;": {"fields": {}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DelegatingSpliterator$OfLong;": {"fields": {}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DelegatingSpliterator$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DelegatingSpliterator;": {"fields": {"s:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supplier:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/util/Spliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExactSizeIfKnown()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DistinctSpliterator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/StreamSpliterators$DistinctSpliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f$1:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamSpliterators$DistinctSpliterator;Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DistinctSpliterator;": {"fields": {"NULL_VALUE:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "s:Ljava/util/Spliterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "seen:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tmpSlot:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;Ljava/util/concurrent/ConcurrentHashMap;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mapNull(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lambda$forEachRemaining$0$java-util-stream-StreamSpliterators$DistinctSpliterator(Ljava/util/function/Consumer;Ljava/lang/Object;)V": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/SpinedBuffer$OfDouble;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfDouble;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/DoubleConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAsBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$DoubleWrappingSpliterator;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initPartialTraversalState()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$initPartialTraversalState$0$java-util-stream-StreamSpliterators$DoubleWrappingSpliterator()Z": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$InfiniteSupplyingSpliterator$OfInt;": {"fields": {"s:Ljava/util/function/IntSupplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/IntSupplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$InfiniteSupplyingSpliterator$OfDouble;": {"fields": {"s:Ljava/util/function/DoubleSupplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/DoubleSupplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$InfiniteSupplyingSpliterator$OfRef;": {"fields": {"s:Ljava/util/function/Supplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/Supplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$InfiniteSupplyingSpliterator$OfLong;": {"fields": {"s:Ljava/util/function/LongSupplier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JLjava/util/function/LongSupplier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$InfiniteSupplyingSpliterator;": {"fields": {"estimate:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/SpinedBuffer$OfInt;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfInt;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/function/LongConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/IntConsumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAsBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initPartialTraversalState()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$initPartialTraversalState$0$java-util-stream-StreamSpliterators$LongWrappingSpliterator()Z": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAsBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$LongWrappingSpliterator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/SpinedBuffer$OfLong;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer$OfLong;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$IntWrappingSpliterator;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initPartialTraversalState()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$initPartialTraversalState$0$java-util-stream-StreamSpliterators$IntWrappingSpliterator()Z": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfInt$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfDouble;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfDouble;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$emptyConsumer$0(D)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/util/function/DoubleConsumer;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfDouble;JJJJ)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;JJJJ)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfDouble$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfLong$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfInt;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfInt;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfInt;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$emptyConsumer$0(I)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/util/function/IntConsumer;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfInt;JJJJ)Ljava/util/Spliterator$OfInt;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;JJJJ)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfLong;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfLong;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfLong;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$emptyConsumer$0(J)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/util/function/LongConsumer;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfLong;JJJJ)Ljava/util/Spliterator$OfLong;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;JJJJ)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfPrimitive-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfRef$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfPrimitive;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfPrimitive;JJJJ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfPrimitive;JJJJLjava/util/stream/StreamSpliterators$SliceSpliterator$OfPrimitive-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyConsumer()Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfRef$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator$OfRef;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;JJJJ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$forEachRemaining$1(Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$tryAdvance$0(Ljava/lang/Object;)V": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator;JJJJ)Ljava/util/Spliterator;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$SliceSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fence:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "s:Ljava/util/Spliterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sliceFence:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sliceOrigin:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;JJJJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator;JJJJ)Ljava/util/Spliterator;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfInt;": {"fields": {"tmpValue:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfInt;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfInt;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfInt;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptConsumed(Ljava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptConsumed(Ljava/util/function/IntConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfInt;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfPrimitive;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfInt;)Ljava/util/Spliterator$OfInt;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfDouble;": {"fields": {"tmpValue:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfDouble;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfDouble;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfDouble;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptConsumed(Ljava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptConsumed(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfDouble;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfPrimitive;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfDouble;)Ljava/util/Spliterator$OfDouble;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfLong;": {"fields": {"tmpValue:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator$OfLong;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfLong;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfLong;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "acceptConsumed(Ljava/lang/Object;)V": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptConsumed(Ljava/util/function/LongConsumer;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfLong;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfPrimitive;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator$OfLong;)Ljava/util/Spliterator$OfLong;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfPrimitive;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfPrimitive;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfPrimitive;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptConsumed(Ljava/lang/Object;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCreate(I)Ljava/util/stream/StreamSpliterators$ArrayBuffer$OfPrimitive;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfRef;": {"fields": {"tmpSlot:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$OfRef;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"fields": {"$VALUES:[Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAYBE_MORE:Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_MORE:Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNLIMITED:Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHUNK_SIZE:I": {"value": "0x80", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permits:Ljava/util/concurrent/atomic/AtomicLong;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "s:Ljava/util/Spliterator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipThreshold:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlimited:Z": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator;Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acquirePermits(J)J": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "makeSpliterator(Ljava/util/Spliterator;)Ljava/util/Spliterator;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permitStatus()Ljava/util/stream/StreamSpliterators$UnorderedSliceSpliterator$PermitStatus;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$WrappingSpliterator$$ExternalSyntheticLambda1;": {"fields": {"f$0:Ljava/util/stream/StreamSpliterators$WrappingSpliterator;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/StreamSpliterators$WrappingSpliterator;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAsBoolean()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$WrappingSpliterator$$ExternalSyntheticLambda0;": {"fields": {"f$0:Ljava/util/stream/SpinedBuffer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/SpinedBuffer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$WrappingSpliterator$$ExternalSyntheticLambda2;": {"fields": {"f$0:Ljava/util/function/Consumer;": {"value": null, "other": [".field", "public", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Consumer;)V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators$WrappingSpliterator;": {"fields": {}, "methods": {"(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/PipelineHelper;Ljava/util/function/Supplier;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initPartialTraversalState()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$initPartialTraversalState$0$java-util-stream-StreamSpliterators$WrappingSpliterator()Z": {"other": [".method", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$AbstractWrappingSpliterator;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/Spliterator;)Ljava/util/stream/StreamSpliterators$WrappingSpliterator;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/StreamSupport;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doubleStream(Ljava/util/Spliterator$OfDouble;Z)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doubleStream(Ljava/util/function/Supplier;IZ)Ljava/util/stream/DoubleStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intStream(Ljava/util/Spliterator$OfInt;Z)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intStream(Ljava/util/function/Supplier;IZ)Ljava/util/stream/IntStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longStream(Ljava/util/Spliterator$OfLong;Z)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "longStream(Ljava/util/function/Supplier;IZ)Ljava/util/stream/LongStream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "stream(Ljava/util/function/Supplier;IZ)Ljava/util/stream/Stream;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/StreamSpliterators;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Streams$2;": {"fields": {"val$a:Ljava/util/stream/BaseStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$b:Ljava/util/stream/BaseStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/stream/BaseStream;Ljava/util/stream/BaseStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$1;": {"fields": {"val$a:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$b:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$AbstractStreamBuilderImpl-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Streams$AbstractStreamBuilderImpl;": {"fields": {"count:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/stream/Streams$AbstractStreamBuilderImpl-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfInt;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfInt;Ljava/util/Spliterator$OfInt;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfDouble;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfDouble;Ljava/util/Spliterator$OfDouble;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfPrimitive;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfPrimitive;Ljava/util/Spliterator$OfPrimitive;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Spliterator$OfPrimitive;Ljava/util/Spliterator$OfPrimitive;Ljava/util/stream/Streams$ConcatSpliterator$OfPrimitive-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfPrimitive-IA;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Streams$ConcatSpliterator;": {"fields": {"aSpliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bSpliterator:Ljava/util/Spliterator;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beforeSplit:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsized:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Spliterator;Ljava/util/Spliterator;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfLong;": {"fields": {}, "methods": {"(Ljava/util/Spliterator$OfLong;Ljava/util/Spliterator$OfLong;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$IntStreamBuilderImpl;": {"fields": {"buffer:Ljava/util/stream/SpinedBuffer$OfInt;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/IntStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$DoubleStreamBuilderImpl;": {"fields": {"buffer:Ljava/util/stream/SpinedBuffer$OfDouble;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first:D": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(D)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(D)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/DoubleStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/DoubleConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/DoubleConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfDouble;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$ConcatSpliterator$OfRef;": {"fields": {}, "methods": {"(Ljava/util/Spliterator;Ljava/util/Spliterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Streams$LongStreamBuilderImpl;": {"fields": {"buffer:Ljava/util/stream/SpinedBuffer$OfLong;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/LongStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$RangeIntSpliterator;": {"fields": {"BALANCED_SPLIT_THRESHOLD:I": {"value": "0x1000000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RIGHT_BALANCED_SPLIT_RATIO:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "from:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "last:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "upTo:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(III)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IIZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "splitPoint(J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/IntConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/IntConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfInt;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$RangeLongSpliterator;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BALANCED_SPLIT_THRESHOLD:J": {"value": "0x1000000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RIGHT_BALANCED_SPLIT_RATIO:J": {"value": "0x8L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "from:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "last:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "upTo:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "splitPoint(J)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "characteristics()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "estimateSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/LongConsumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComparator()Ljava/util/Comparator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/lang/Object;)Z": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/LongConsumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfLong;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator$OfPrimitive;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySplit()Ljava/util/Spliterator;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams$StreamBuilderImpl;": {"fields": {"buffer:Ljava/util/stream/SpinedBuffer;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "add(Ljava/lang/Object;)Ljava/util/stream/Stream$Builder;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "build()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "forEachRemaining(Ljava/util/function/Consumer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryAdvance(Ljava/util/function/Consumer;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/stream/Streams;": {"fields": {"NONE:Ljava/lang/Object;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "composeWithExceptions(Ljava/lang/Runnable;Ljava/lang/Runnable;)Ljava/lang/Runnable;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "composedClose(Ljava/util/stream/BaseStream;Ljava/util/stream/BaseStream;)Ljava/lang/Runnable;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/TerminalOp;": {"fields": {}, "methods": {"evaluateParallel(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "evaluateSequential(Ljava/util/stream/PipelineHelper;Ljava/util/Spliterator;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getOpFlags()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inputShape()Ljava/util/stream/StreamShape;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/stream/TerminalSink;": {"fields": {}, "methods": {}}, "Ljava/util/stream/Tripwire;": {"fields": {"ENABLED:Z": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TRIPWIRE_PROPERTY:Ljava/lang/String;": {"value": "\"org.openjdk.java.util.stream.tripwire\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$static$0()Ljava/lang/Boolean;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trip(Ljava/lang/Class;Ljava/lang/String;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/stream/Tripwire$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/Adler32;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adler:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(II)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "updateByteBuffer(IJII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateBytes(I[BII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/CheckedOutputStream;": {"fields": {"cksum:Ljava/util/zip/Checksum;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;Ljava/util/zip/Checksum;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChecksum()Ljava/util/zip/Checksum;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/CRC32;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crc:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(II)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "updateByteBuffer(IJII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateBytes(I[BII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/CheckedInputStream;": {"fields": {"cksum:Ljava/util/zip/Checksum;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Ljava/util/zip/Checksum;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChecksum()Ljava/util/zip/Checksum;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/Checksum;": {"fields": {}, "methods": {"getValue()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/DataFormatException;": {"fields": {"serialVersionUID:J": {"value": "0x1ecdb85601655eecL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/Deflater;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BEST_COMPRESSION:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BEST_SPEED:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFAULT_COMPRESSION:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFAULT_STRATEGY:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DEFLATED:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FILTERED:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "FULL_FLUSH:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "HUFFMAN_ONLY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_COMPRESSION:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NO_FLUSH:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SYNC_FLUSH:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "buf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "bytesRead:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bytesWritten:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finish:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "finished:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "len:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "level:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "off:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setParams:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "strategy:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "zsRef:Ljava/util/zip/ZStreamRef;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deflateBytes(J[BIII)I": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAdler(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(IIZ)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reset(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDictionary(J[BII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "deflate([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deflate([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deflate([BIII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finish()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finished()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAdler()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytesRead()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytesWritten()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalIn()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalOut()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "needsInput()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDictionary([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDictionary([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInput([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInput([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLevel(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStrategy(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/DeflaterOutputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "def:Ljava/util/zip/Deflater;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "syncFlush:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "usesDefaultDeflater:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Deflater;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Deflater;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Deflater;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Deflater;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deflate()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finish()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/DeflaterInputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "def:Ljava/util/zip/Deflater;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rbuf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reachEOF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "usesDefaultDeflater:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/util/zip/Deflater;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/util/zip/Deflater;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/GZIPInputStream;": {"fields": {"FCOMMENT:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FEXTRA:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FHCRC:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FNAME:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "FTEXT:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GZIP_MAGIC:I": {"value": "0x8b1f", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crc:Ljava/util/zip/CRC32;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "eos:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tmpbuf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readHeader(Ljava/io/InputStream;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readTrailer()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUByte(Ljava/io/InputStream;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUInt(Ljava/io/InputStream;)J": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readUShort(Ljava/io/InputStream;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skipBytes(Ljava/io/InputStream;I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/GZIPOutputStream;": {"fields": {"GZIP_MAGIC:I": {"value": "0x8b1f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TRAILER_SIZE:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crc:Ljava/util/zip/CRC32;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;IZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "writeHeader()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeInt(I[BI)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeShort(I[BI)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeTrailer([BI)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finish()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/GZIPInputStream$1;": {"fields": {"this$0:Ljava/util/zip/GZIPInputStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/zip/GZIPInputStream;Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/Inflater;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultBuf:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "bytesRead:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bytesWritten:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finished:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "len:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "needDict:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "off:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "zsRef:Ljava/util/zip/ZStreamRef;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAdler(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inflateBytes(J[BII)I": {"other": [".method", "private", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(Z)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "reset(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setDictionary(J[BII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ended()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finished()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAdler()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytesRead()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytesWritten()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemaining()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalIn()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalOut()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inflate([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inflate([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "needsDictionary()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "needsInput()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDictionary([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDictionary([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInput([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInput([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/InflaterInputStream;": {"fields": {"b:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "buf:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closed:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inf:Ljava/util/zip/Inflater;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "len:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reachEOF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "singleByteBuf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/util/zip/Inflater;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/util/zip/Inflater;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/InflaterOutputStream;": {"fields": {"buf:[B": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inf:Ljava/util/zip/Inflater;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "usesDefaultInflater:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wbuf:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/util/zip/Inflater;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finish()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZStreamRef;": {"fields": {"address:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "address()J": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clear()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/zip/ZipCoder;": {"fields": {"cs:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dec:Ljava/nio/charset/CharsetDecoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "enc:Ljava/nio/charset/CharsetEncoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUTF8:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "utf8:Ljava/util/zip/ZipCoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/charset/Charset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decoder()Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoder()Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/nio/charset/Charset;)Ljava/util/zip/ZipCoder;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytes(Ljava/lang/String;)[B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytesUTF8(Ljava/lang/String;)[B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUTF8()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString([B)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString([BI)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toStringUTF8([BI)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/zip/ZipConstants64;": {"fields": {"EXTID_EXTT:I": {"value": "0x5455", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTID_NTFS:I": {"value": "0xa", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTID_UNIX:I": {"value": "0xd", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTID_ZIP64:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTT_FLAG_LAT:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTT_FLAG_LMT:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTT_FLAT_CT:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "USE_UTF8:I": {"value": "0x800", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDDSK:I": {"value": "0x14", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDEXT:I": {"value": "0x38", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDHDR:I": {"value": "0x38", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDLEN:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDNMD:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDOFF:I": {"value": "0x30", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDSIG:J": {"value": "0x6064b50L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDSIZ:I": {"value": "0x28", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDTOD:I": {"value": "0x18", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDTOT:I": {"value": "0x20", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDVEM:I": {"value": "0xc", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_ENDVER:I": {"value": "0xe", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_EXTCRC:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_EXTHDR:I": {"value": "0x18", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_EXTID:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_EXTLEN:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_EXTSIZ:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_LOCDSK:I": {"value": "0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_LOCHDR:I": {"value": "0x14", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_LOCOFF:I": {"value": "0x8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_LOCSIG:J": {"value": "0x7064b50L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_LOCTOT:I": {"value": "0x10", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_MAGICCOUNT:I": {"value": "0xffff", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZIP64_MAGICVAL:J": {"value": "0xffffffffL", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljava/util/zip/ZipConstants;": {"fields": {"CENATT:I": {"value": "0x24", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENATX:I": {"value": "0x26", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENCOM:I": {"value": "0x20", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENCRC:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENDSK:I": {"value": "0x22", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENEXT:I": {"value": "0x1e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENFLG:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENHDR:I": {"value": "0x2e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENHOW:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENLEN:I": {"value": "0x18", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENNAM:I": {"value": "0x1c", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENOFF:I": {"value": "0x2a", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENSIG:J": {"value": "0x2014b50L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENSIZ:I": {"value": "0x14", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENTIM:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENVEM:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CENVER:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDCOM:I": {"value": "0x14", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDHDR:I": {"value": "0x16", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDOFF:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDSIG:J": {"value": "0x6054b50L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDSIZ:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDSUB:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENDTOT:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTCRC:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTHDR:I": {"value": "0x10", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTLEN:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTSIG:J": {"value": "0x8074b50L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "EXTSIZ:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCCRC:I": {"value": "0xe", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCEXT:I": {"value": "0x1c", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCFLG:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCHDR:I": {"value": "0x1e", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCHOW:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCLEN:I": {"value": "0x16", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCNAM:I": {"value": "0x1a", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCSIG:J": {"value": "0x4034b50L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCSIZ:I": {"value": "0x12", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCTIM:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "LOCVER:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {}}, "Ljava/util/zip/ZipEntry;": {"fields": {"DEFLATED:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "DOSTIME_BEFORE_1980:J": {"value": "0x210000L", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STORED:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UPPER_DOSTIME_BOUND:J": {"value": "0x3abd8960000L", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "atime:Ljava/nio/file/attribute/FileTime;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comment:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crc:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "csize:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ctime:Ljava/nio/file/attribute/FileTime;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dataOffset:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extra:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flag:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "method:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "mtime:Ljava/nio/file/attribute/FileTime;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "xdostime:J": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;JJJII[BJ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComment()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCompressedSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCrc()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCreationTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDataOffset()J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getExtra()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastAccessTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastModifiedTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMethod()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTime()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirectory()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setComment(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCompressedSize(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCrc(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCreationTime(Ljava/nio/file/attribute/FileTime;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExtra([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setExtra0([BZ)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setLastAccessTime(Ljava/nio/file/attribute/FileTime;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLastModifiedTime(Ljava/nio/file/attribute/FileTime;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMethod(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSize(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipError;": {"fields": {"serialVersionUID:J": {"value": "0xbd9ec4d91d7499bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipException;": {"fields": {"serialVersionUID:J": {"value": "0x6f0668a23bc0d4cfL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipFile$ZipEntryIterator;": {"fields": {"i:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/zip/ZipFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/zip/ZipFile;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Ljava/util/zip/ZipFile$ZipFileInflaterInputStream;": {"fields": {"closeRequested:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "eof:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/zip/ZipFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zfin:Ljava/util/zip/ZipFile$ZipFileInputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/zip/ZipFile;Ljava/util/zip/ZipFile$ZipFileInputStream;Ljava/util/zip/Inflater;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fill()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipFile$ZipFileInputStream;": {"fields": {"jzentry:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pos:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rem:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljava/util/zip/ZipFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zfisCloseRequested:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/zip/ZipFile;J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipFile;": {"fields": {"DEFLATED:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JZENTRY_COMMENT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JZENTRY_EXTRA:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JZENTRY_NAME:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OPEN_DELETE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OPEN_READ:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STORED:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "usemmap:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closeRequested:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "fileToRemoveOnClose:Ljava/io/File;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inflaterCache:Ljava/util/Deque;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jzfile:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "locsig:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "streams:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "total:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zc:Ljava/util/zip/ZipCoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetcloseRequested(Ljava/util/zip/ZipFile;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetjzfile(Ljava/util/zip/ZipFile;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetname(Ljava/util/zip/ZipFile;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetstreams(Ljava/util/zip/ZipFile;)Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettotal(Ljava/util/zip/ZipFile;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mensureOpen(Ljava/util/zip/ZipFile;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mensureOpenOrZipException(Ljava/util/zip/ZipFile;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetZipEntry(Ljava/util/zip/ZipFile;Ljava/lang/String;J)Ljava/util/zip/ZipEntry;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mreleaseInflater(Ljava/util/zip/ZipFile;Ljava/util/zip/Inflater;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smfreeEntry(JJ)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetEntryCSize(J)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetEntrySize(J)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetNextEntry(JI)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetZipMessage(J)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smread(JJJ[BII)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;ILjava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/File;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpenOrZipException()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "freeEntry(JJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getCommentBytes(J)[B": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntry(J[BZ)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEntryBytes(JI)[B": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryCSize(J)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryCrc(J)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryFlag(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryMethod(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntrySize(J)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntryTime(J)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getFileDescriptor(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInflater()Ljava/util/zip/Inflater;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNextEntry(JI)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTotal(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZipEntry(Ljava/lang/String;J)Ljava/util/zip/ZipEntry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getZipMessage(J)Ljava/lang/String;": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "open(Ljava/lang/String;IJZ)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "read(JJJ[BII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "releaseInflater(Ljava/util/zip/Inflater;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startsWithLOC(J)Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "entries()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getComment()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInputStream(Ljava/util/zip/ZipEntry;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWithLocHeader()Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stream()Ljava/util/stream/Stream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipInputStream;": {"fields": {"DEFLATED:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "STORED:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "b:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crc:Ljava/util/zip/CRC32;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entry:Ljava/util/zip/ZipEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entryEOF:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "flag:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "remaining:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tmpbuf:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "zc:Ljava/util/zip/ZipCoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readEnd(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readFully([BII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readLOC()Ljava/util/zip/ZipEntry;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeEntry()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createZipEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNextEntry()Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipOutputStream$XEntry;": {"fields": {"entry:Ljava/util/zip/ZipEntry;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:J": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/zip/ZipEntry;J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljava/util/zip/ZipOutputStream;": {"fields": {"DEFLATED:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "STORED:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "inhibitZip64:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "comment:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crc:Ljava/util/zip/CRC32;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current:Ljava/util/zip/ZipOutputStream$XEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "finished:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "locoff:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "method:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "names:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "written:J": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "xentries:Ljava/util/Vector;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "zc:Ljava/util/zip/ZipCoder;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljava/nio/charset/Charset;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExtraLen([B)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version(Ljava/util/zip/ZipEntry;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeByte(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeBytes([BII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeCEN(Ljava/util/zip/ZipOutputStream$XEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeEND(JJ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeEXT(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeExtra([B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeInt(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLOC(Ljava/util/zip/ZipOutputStream$XEntry;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeLong(J)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeShort(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeEntry()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finish()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putNextEntry(Ljava/util/zip/ZipEntry;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setComment(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLevel(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMethod(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljava/util/zip/ZipUtils;": {"fields": {"WINDOWS_EPOCH_IN_MICROSECONDS:J": {"value": "-0x295e9648864000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dosToJavaTime(J)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extendedDosToJavaTime(J)J": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileTimeToUnixTime(Ljava/nio/file/attribute/FileTime;)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileTimeToWinTime(Ljava/nio/file/attribute/FileTime;)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get16([BI)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get32([BI)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get64([BI)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaToDosTime(J)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaToExtendedDosTime(J)J": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unixTimeToFileTime(J)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "winTimeToFileTime(J)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/annotation/processing/Generated;": {"fields": {}, "methods": {"comments()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/AEADBadTagException;": {"fields": {"serialVersionUID:J": {"value": "-0x6c5ef28d211e605L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/BadPaddingException;": {"fields": {"serialVersionUID:J": {"value": "-0x49c2cb2a941ef57bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/Cipher$1;": {"fields": {"$SwitchMap$javax$crypto$Cipher$InitType:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$CipherSpiAndProvider;": {"fields": {"cipherSpi:Ljavax/crypto/CipherSpi;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/CipherSpi;Ljava/security/Provider;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$InitParams;": {"fields": {"initType:Ljavax/crypto/Cipher$InitType;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:Ljava/security/Key;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opmode:I": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "params:Ljava/security/AlgorithmParameters;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "random:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spec:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/Cipher$InitType;ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$NeedToSet;": {"fields": {"$VALUES:[Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BOTH:Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODE:Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NONE:Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PADDING:Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljavax/crypto/Cipher$NeedToSet;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljavax/crypto/Cipher$NeedToSet;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$SpiAndProviderUpdater;": {"fields": {"initSpiLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specifiedProvider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specifiedSpi:Ljavax/crypto/CipherSpi;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljavax/crypto/Cipher;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/Cipher;Ljava/security/Provider;Ljavax/crypto/CipherSpi;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCurrentSpi(Ljavax/crypto/CipherSpi;)Ljavax/crypto/CipherSpi;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setCipherSpiImplAndProvider(Ljavax/crypto/CipherSpi;Ljava/security/Provider;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateAndGetSpiAndProvider(Ljavax/crypto/Cipher$InitParams;Ljavax/crypto/CipherSpi;Ljava/security/Provider;)Ljavax/crypto/Cipher$CipherSpiAndProvider;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "updateAndGetSpiAndProvider(Ljavax/crypto/CipherSpi;Ljava/security/Provider;)Ljavax/crypto/Cipher$CipherSpiAndProvider;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$InitType;": {"fields": {"$VALUES:[Ljavax/crypto/Cipher$InitType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALGORITHM_PARAMS:Ljavax/crypto/Cipher$InitType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ALGORITHM_PARAM_SPEC:Ljavax/crypto/Cipher$InitType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "KEY:Ljavax/crypto/Cipher$InitType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljavax/crypto/Cipher$InitType;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Ljavax/crypto/Cipher$InitType;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher$Transform;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needToSet:Ljavax/crypto/Cipher$NeedToSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetname(Ljavax/crypto/Cipher$Transform;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetneedToSet(Ljavax/crypto/Cipher$Transform;)Ljavax/crypto/Cipher$NeedToSet;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljavax/crypto/Cipher$NeedToSet;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/crypto/Cipher;": {"fields": {"ATTRIBUTE_MODES:Ljava/lang/String;": {"value": "\"SupportedModes\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ATTRIBUTE_PADDINGS:Ljava/lang/String;": {"value": "\"SupportedPaddings\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DECRYPT_MODE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ENCRYPT_MODE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "KEY_USAGE_EXTENSION_OID:Ljava/lang/String;": {"value": "\"2.5.29.15\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRIVATE_KEY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "PUBLIC_KEY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "SECRET_KEY:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "UNWRAP_MODE:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WRAP_MODE:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "exmech:Ljavax/crypto/ExemptionMechanism;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "opmode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljavax/crypto/CipherSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spiAndProviderUpdater:Ljavax/crypto/Cipher$SpiAndProviderUpdater;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tokenizedTransformation:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transformation:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgettokenizedTransformation(Ljavax/crypto/Cipher;)[Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputprovider(Ljavax/crypto/Cipher;Ljava/security/Provider;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputspi(Ljavax/crypto/Cipher;Ljavax/crypto/CipherSpi;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljavax/crypto/CipherSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/crypto/CipherSpi;Ljava/security/Provider;Ljava/lang/String;[Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkCipherState()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOpmode(I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chooseProvider(Ljavax/crypto/Cipher$InitType;ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createCipher(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Cipher;": {"other": [".method", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithmParameterSpec(Ljava/security/AlgorithmParameters;)Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Ljavax/crypto/Cipher;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/Cipher;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Cipher;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxAllowedKeyLength(Ljava/lang/String;)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxAllowedParameterSpec(Ljava/lang/String;)Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOpmodeString(I)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matchAttribute(Ljava/security/Provider$Service;Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tokenizeTransformation(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryCombinations(Ljavax/crypto/Cipher$InitParams;Ljava/security/Provider;[Ljava/lang/String;)Ljavax/crypto/Cipher$CipherSpiAndProvider;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tryTransformWithProvider(Ljavax/crypto/Cipher$InitParams;[Ljava/lang/String;Ljavax/crypto/Cipher$NeedToSet;Ljava/security/Provider$Service;)Ljavax/crypto/Cipher$CipherSpiAndProvider;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doFinal(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([BI)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([BII[B)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([BII[BI)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([B)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([BII)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlockSize()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrentSpi()Ljavax/crypto/CipherSpi;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getExemptionMechanism()Ljavax/crypto/ExemptionMechanism;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIV()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputSize(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;Ljava/security/AlgorithmParameters;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/cert/Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/cert/Certificate;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap([BLjava/lang/String;I)Ljava/security/Key;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII[B)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII[BI)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAAD(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAAD([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateAAD([BII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateProviderIfNeeded()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wrap(Ljava/security/Key;)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/CipherInputStream;": {"fields": {"cipher:Ljavax/crypto/Cipher;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "done:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ibuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "input:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "obuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ofinish:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ostart:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/InputStream;Ljavax/crypto/Cipher;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMoreData()I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/CipherOutputStream;": {"fields": {"cipher:Ljavax/crypto/Cipher;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ibuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "obuffer:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "output:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/io/OutputStream;Ljavax/crypto/Cipher;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/CipherSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bufferCrypt(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;Z)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTempArraySize(I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "engineDoFinal(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDoFinal([BII[BI)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDoFinal([BII)[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetBlockSize()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetIV()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKeySize(Ljava/security/Key;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetOutputSize(I)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetMode(Ljava/lang/String;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetPadding(Ljava/lang/String;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUnwrap([BLjava/lang/String;I)Ljava/security/Key;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII[BI)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdateAAD(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdateAAD([BII)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineWrap(Ljava/security/Key;)[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/CryptoAllPermission;": {"fields": {"ALG_NAME:Ljava/lang/String;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSTANCE:Ljavax/crypto/CryptoAllPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/CryptoPermission;": {"fields": {"ALG_NAME_WILDCARD:Ljava/lang/String;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/security/spec/AlgorithmParameterSpec;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAlgorithmParameterSpec()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCheckParam()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExemptionMechanism()Ljava/lang/String;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMaxKeySize()I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/CryptoPermissions;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/security/Permission;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "elements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMinimum(Ljavax/crypto/CryptoPermissions;)Ljavax/crypto/CryptoPermissions;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPermissionCollection(Ljava/lang/String;)Ljava/security/PermissionCollection;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "load(Ljava/io/InputStream;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/CryptoPolicyParser$ParsingException;": {"fields": {}, "methods": {"(ILjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/CryptoPolicyParser;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPermissions()[Ljavax/crypto/CryptoPermission;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/Reader;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/EncryptedPrivateKeyInfo;": {"fields": {"algid:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encryptedData:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/security/AlgorithmParameters;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPKCS8Encoding([B)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkTag(Lsun/security/util/DerValue;BLjava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKeySpecImpl(Ljava/security/Key;Ljava/security/Provider;)Ljava/security/spec/PKCS8EncodedKeySpec;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncryptedData()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljava/security/Key;)Ljava/security/spec/PKCS8EncodedKeySpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljava/security/Key;Ljava/lang/String;)Ljava/security/spec/PKCS8EncodedKeySpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljava/security/Key;Ljava/security/Provider;)Ljava/security/spec/PKCS8EncodedKeySpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljavax/crypto/Cipher;)Ljava/security/spec/PKCS8EncodedKeySpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/ExemptionMechanism;": {"fields": {"done:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "exmechSpi:Ljavax/crypto/ExemptionMechanismSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyStored:Ljava/security/Key;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mechanism:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/ExemptionMechanismSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/crypto/ExemptionMechanism;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/ExemptionMechanism;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/ExemptionMechanism;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "genExemptionBlob([B)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "genExemptionBlob([BI)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "genExemptionBlob()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputSize(I)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/AlgorithmParameters;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCryptoAllowed(Ljava/security/Key;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/ExemptionMechanismException;": {"fields": {"serialVersionUID:J": {"value": "0x15d359cc64927bf5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/ExemptionMechanismSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenExemptionBlob([BI)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenExemptionBlob()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetOutputSize(I)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;Ljava/security/AlgorithmParameters;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/IllegalBlockSizeException;": {"fields": {"serialVersionUID:J": {"value": "-0x1b4598cb70b14d28L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/JarVerifier$1;": {"fields": {"this$0:Ljavax/crypto/JarVerifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/crypto/JarVerifier;Ljava/net/URL;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/jar/JarFile;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/JarVerifier;": {"fields": {"appPerms:Ljavax/crypto/CryptoPermissions;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarURL:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "savePerms:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyPolicySigned([Ljava/security/cert/Certificate;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPermissions()Ljavax/crypto/CryptoPermissions;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/JceSecurity$1;": {"fields": {"val$clazz:Ljava/lang/Class;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/JceSecurity;": {"fields": {"NULL_URL:Ljava/net/URL;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROVIDER_VERIFIED:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RANDOM:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "codeBaseCacheRef:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultPolicy:Ljavax/crypto/CryptoPermissions;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exemptPolicy:Ljavax/crypto/CryptoPermissions;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verificationResults:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyingProviders:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetNULL_URL()Ljava/net/URL;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canUseProvider(Ljava/security/Provider;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeBase(Ljava/lang/Class;)Ljava/net/URL;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefaultPolicy()Ljavax/crypto/CryptoPermissions;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExemptPolicy()Ljavax/crypto/CryptoPermissions;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/security/Provider;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVerificationResult(Ljava/security/Provider;)Ljava/lang/Exception;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadPolicies(Ljava/io/File;Ljavax/crypto/CryptoPermissions;Ljavax/crypto/CryptoPermissions;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyExemptJar(Ljava/net/URL;)Ljavax/crypto/CryptoPermissions;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyProviderJar(Ljava/net/URL;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/KeyAgreement;": {"fields": {"I_NO_PARAMS:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_PARAMS:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "warnCount:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljavax/crypto/KeyAgreementSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljavax/crypto/KeyAgreementSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseProvider(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Ljavax/crypto/KeyAgreement;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/KeyAgreement;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/KeyAgreement;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProviderName()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implInit(Ljavax/crypto/KeyAgreementSpi;ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "chooseFirstProvider()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doPhase(Ljava/security/Key;Z)Ljava/security/Key;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateSecret([BI)I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateSecret(Ljava/lang/String;)Ljavax/crypto/SecretKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "generateSecret()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/JceSecurityManager;": {"fields": {"INSTANCE:Ljavax/crypto/JceSecurityManager;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCryptoPermission(Ljava/lang/String;)Ljavax/crypto/CryptoPermission;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/crypto/KeyAgreementSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDoPhase(Ljava/security/Key;Z)Ljava/security/Key;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateSecret([BI)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateSecret(Ljava/lang/String;)Ljavax/crypto/SecretKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateSecret()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/KeyGenerator;": {"fields": {"I_NONE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_PARAMS:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_RANDOM:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "I_SIZE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initKeySize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initParams:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initRandom:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initType:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceIterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljavax/crypto/KeyGeneratorSpi;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljavax/crypto/KeyGeneratorSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/crypto/KeyGenerator;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/KeyGenerator;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/KeyGenerator;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextSpi(Ljavax/crypto/KeyGeneratorSpi;Z)Ljavax/crypto/KeyGeneratorSpi;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disableFailover()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateKey()Ljavax/crypto/SecretKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(I)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(ILjava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/KeyGeneratorSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateKey()Ljavax/crypto/SecretKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/Mac;": {"fields": {"warnCount:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initialized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljavax/crypto/MacSpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljavax/crypto/MacSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseProvider(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Ljavax/crypto/Mac;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/Mac;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Mac;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseFirstProvider()V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([BI)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doFinal([B)[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCurrentSpi()Ljavax/crypto/MacSpi;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": "test-api"}, "getMacLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([B)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "update([BII)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/MacSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDoFinal()[B": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetMacLength()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineReset()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(B)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate(Ljava/nio/ByteBuffer;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/NoSuchPaddingException;": {"fields": {"serialVersionUID:J": {"value": "-0x3f7626dcc02d596aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/NullCipher;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/NullCipherSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "engineDoFinal([BII[BI)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineDoFinal([BII)[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetBlockSize()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetIV()[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKeySize(Ljava/security/Key;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetOutputSize(I)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetMode(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineSetPadding(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII[BI)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineUpdate([BII)[B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/SealedObject;": {"fields": {"serialVersionUID:J": {"value": "0x3e363da6c3b75470L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "encodedParams:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encryptedContent:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "paramsAlg:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sealAlg:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/Serializable;Ljavax/crypto/Cipher;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/crypto/SealedObject;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "unseal(Ljava/security/Key;Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/security/Key;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljava/security/Key;Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getObject(Ljavax/crypto/Cipher;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/SecretKey;": {"fields": {"serialVersionUID:J": {"value": "-0x428e6246d7470ac8L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {}}, "Ljavax/crypto/SecretKeyFactory;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serviceIterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "spi:Ljavax/crypto/SecretKeyFactorySpi;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljavax/crypto/SecretKeyFactorySpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/crypto/SecretKeyFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/crypto/SecretKeyFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/SecretKeyFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextSpi(Ljavax/crypto/SecretKeyFactorySpi;)Ljavax/crypto/SecretKeyFactorySpi;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateSecret(Ljava/security/spec/KeySpec;)Ljavax/crypto/SecretKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeySpec(Ljavax/crypto/SecretKey;Ljava/lang/Class;)Ljava/security/spec/KeySpec;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateKey(Ljavax/crypto/SecretKey;)Ljavax/crypto/SecretKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/SecretKeyFactorySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGenerateSecret(Ljava/security/spec/KeySpec;)Ljavax/crypto/SecretKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKeySpec(Ljavax/crypto/SecretKey;Ljava/lang/Class;)Ljava/security/spec/KeySpec;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineTranslateKey(Ljavax/crypto/SecretKey;)Ljavax/crypto/SecretKey;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/ShortBufferException;": {"fields": {"serialVersionUID:J": {"value": "0x74f54573adc91683L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/extObjectInputStream;": {"fields": {"systemClassLoader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolveClass(Ljava/io/ObjectStreamClass;)Ljava/lang/Class;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/interfaces/DHKey;": {"fields": {}, "methods": {"getParams()Ljavax/crypto/spec/DHParameterSpec;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/interfaces/DHPublicKey;": {"fields": {"serialVersionUID:J": {"value": "-0x5bfbc112dc20b219L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getY()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/interfaces/PBEKey;": {"fields": {"serialVersionUID:J": {"value": "-0x13d86ff828083e61L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getIterationCount()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()[C": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSalt()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/interfaces/DHPrivateKey;": {"fields": {"serialVersionUID:J": {"value": "0x1eb1dc4c8e677e09L", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"getX()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DESKeySpec;": {"fields": {"DES_KEY_LEN:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "WEAK_KEYS:[[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParityAdjusted([BI)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isWeak([BI)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DESedeKeySpec;": {"fields": {"DES_EDE_KEY_LEN:I": {"value": "0x18", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "key:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isParityAdjusted([BI)Z": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DHGenParameterSpec;": {"fields": {"exponentSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "primeSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExponentSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrimeSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DHParameterSpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "l:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/math/BigInteger;Ljava/math/BigInteger;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getL()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DHPrivateKeySpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "x:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getX()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/DHPublicKeySpec;": {"fields": {"g:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "p:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "y:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getG()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getP()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getY()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/GCMParameterSpec;": {"fields": {"iv:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(I[BII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getIV()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTLen()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/IvParameterSpec;": {"fields": {"iv:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIV()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/OAEPParameterSpec;": {"fields": {"DEFAULT:Ljavax/crypto/spec/OAEPParameterSpec;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mdName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mgfName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "mgfSpec:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pSrc:Ljavax/crypto/spec/PSource;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;Ljavax/crypto/spec/PSource;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDigestAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMGFAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMGFParameters()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPSource()Ljavax/crypto/spec/PSource;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/PBEKeySpec;": {"fields": {"iterationCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "keyLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "password:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "salt:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([C)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([C[BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([C[BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearPassword()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIterationCount()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyLength()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()[C": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSalt()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/PBEParameterSpec;": {"fields": {"iterationCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "paramSpec:Ljava/security/spec/AlgorithmParameterSpec;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "salt:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BILjava/security/spec/AlgorithmParameterSpec;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIterationCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameterSpec()Ljava/security/spec/AlgorithmParameterSpec;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSalt()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/PSource;": {"fields": {"pSrcName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/PSource$PSpecified;": {"fields": {"DEFAULT:Ljavax/crypto/spec/PSource$PSpecified;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "p:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/RC2ParameterSpec;": {"fields": {"effectiveKeyBits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "iv:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I[BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEffectiveKeyBits()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIV()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/SecretKeySpec;": {"fields": {"serialVersionUID:J": {"value": "0x5b470b66e230614dL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([BIILjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([BLjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/crypto/spec/RC5ParameterSpec;": {"fields": {"iv:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rounds:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wordSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(III)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(III[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(III[BI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIV()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRounds()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWordSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/DefaultServerSocketFactory;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createServerSocket()Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(I)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(II)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(IILjava/net/InetAddress;)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/DefaultSocketFactory;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createSocket()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ServerSocketFactory;": {"fields": {"theFactory:Ljavax/net/ServerSocketFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljavax/net/ServerSocketFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket()Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(I)Ljava/net/ServerSocket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(II)Ljava/net/ServerSocket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(IILjava/net/InetAddress;)Ljava/net/ServerSocket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/SocketFactory;": {"fields": {"theFactory:Ljavax/net/SocketFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljavax/net/SocketFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljavax/net/SocketFactory;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createSocket()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;I)Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/CertPathTrustManagerParameters;": {"fields": {"parameters:Ljava/security/cert/CertPathParameters;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPathParameters;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()Ljava/security/cert/CertPathParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/DefaultSSLServerSocketFactory;": {"fields": {"reason:Ljava/lang/Exception;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Exception;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwException()Ljava/net/ServerSocket;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createServerSocket()Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(I)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(II)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createServerSocket(IILjava/net/InetAddress;)Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultCipherSuites()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/DefaultSSLSocketFactory;": {"fields": {"reason:Ljava/lang/Exception;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Exception;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwException()Ljava/net/Socket;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createSocket()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/lang/String;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/InetAddress;ILjava/net/InetAddress;I)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSocket(Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultCipherSuites()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/ExtendedSSLSession;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalSupportedSignatureAlgorithms()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerSupportedSignatureAlgorithms()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestedServerNames()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/HandshakeCompletedEvent;": {"fields": {"serialVersionUID:J": {"value": "0x6dd7999712948132L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "session:Ljavax/net/ssl/SSLSession;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/SSLSocket;Ljavax/net/ssl/SSLSession;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCipherSuite()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPrincipal()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerCertificateChain()[Ljavax/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPrincipal()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSocket()Ljavax/net/ssl/SSLSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/HttpsURLConnection$NoPreloadHolder;": {"fields": {"defaultHostnameVerifier:Ljavax/net/ssl/HostnameVerifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/net/ssl/HttpsURLConnection;": {"fields": {"OK_HOSTNAME_VERIFIER_CLASS:Ljava/lang/String;": {"value": "\"com.android.okhttp.internal.tls.OkHostnameVerifier\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultSSLSocketFactory:Ljavax/net/ssl/SSLSocketFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hostnameVerifier:Ljavax/net/ssl/HostnameVerifier;": {"value": null, "other": [".field", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sslSocketFactory:Ljavax/net/ssl/SSLSocketFactory;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultHostnameVerifier()Ljavax/net/ssl/HostnameVerifier;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultSSLSocketFactory()Ljavax/net/ssl/SSLSocketFactory;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStrictHostnameVerifier()Ljavax/net/ssl/HostnameVerifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "setDefaultHostnameVerifier(Ljavax/net/ssl/HostnameVerifier;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultSSLSocketFactory(Ljavax/net/ssl/SSLSocketFactory;)V": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCipherSuite()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHostnameVerifier()Ljavax/net/ssl/HostnameVerifier;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPrincipal()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPrincipal()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSSLSocketFactory()Ljavax/net/ssl/SSLSocketFactory;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHostnameVerifier(Ljavax/net/ssl/HostnameVerifier;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSSLSocketFactory(Ljavax/net/ssl/SSLSocketFactory;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/HostnameVerifier;": {"fields": {}, "methods": {"verify(Ljava/lang/String;Ljavax/net/ssl/SSLSession;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/HandshakeCompletedListener;": {"fields": {}, "methods": {"handshakeCompleted(Ljavax/net/ssl/HandshakeCompletedEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/KeyManagerFactory$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/net/ssl/KeyManager;": {"fields": {}, "methods": {}}, "Ljavax/net/ssl/KeyManagerFactorySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetKeyManagers()[Ljavax/net/ssl/KeyManager;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/KeyStore;[C)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljavax/net/ssl/ManagerFactoryParameters;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/KeyManagerFactory;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factorySpi:Ljavax/net/ssl/KeyManagerFactorySpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/KeyManagerFactorySpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/net/ssl/KeyManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/net/ssl/KeyManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/net/ssl/KeyManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyManagers()[Ljavax/net/ssl/KeyManager;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/KeyStore;[C)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljavax/net/ssl/ManagerFactoryParameters;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SNIMatcher;": {"fields": {"type:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "matches(Ljavax/net/ssl/SNIServerName;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SNIHostName;": {"fields": {"hostname:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkHostName()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createSNIMatcher(Ljava/lang/String;)Ljavax/net/ssl/SNIMatcher;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAsciiName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SNIHostName$SNIHostNameMatcher;": {"fields": {"pattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matches(Ljavax/net/ssl/SNIServerName;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/ManagerFactoryParameters;": {"fields": {}, "methods": {}}, "Ljavax/net/ssl/KeyStoreBuilderParameters;": {"fields": {"parameters:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/KeyStore$Builder;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParameters()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLContext;": {"fields": {"defaultContext:Ljavax/net/ssl/SSLContext;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contextSpi:Ljavax/net/ssl/SSLContextSpi;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protocol:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/SSLContextSpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljavax/net/ssl/SSLContext;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/net/ssl/SSLContext;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/net/ssl/SSLContext;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/net/ssl/SSLContext;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefault(Ljavax/net/ssl/SSLContext;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSSLEngine()Ljavax/net/ssl/SSLEngine;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSSLEngine(Ljava/lang/String;I)Ljavax/net/ssl/SSLEngine;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClientSessionContext()Ljavax/net/ssl/SSLSessionContext;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtocol()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerSessionContext()Ljavax/net/ssl/SSLSessionContext;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerSocketFactory()Ljavax/net/ssl/SSLServerSocketFactory;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSocketFactory()Ljavax/net/ssl/SSLSocketFactory;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init([Ljavax/net/ssl/KeyManager;[Ljavax/net/ssl/TrustManager;Ljava/security/SecureRandom;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SNIServerName;": {"fields": {"HEXES:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "type:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I[B)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toHexString([B)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getType()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLContextSpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultSocket()Ljavax/net/ssl/SSLSocket;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "engineCreateSSLEngine()Ljavax/net/ssl/SSLEngine;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineCreateSSLEngine(Ljava/lang/String;I)Ljavax/net/ssl/SSLEngine;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetClientSessionContext()Ljavax/net/ssl/SSLSessionContext;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetDefaultSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetServerSessionContext()Ljavax/net/ssl/SSLSessionContext;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetServerSocketFactory()Ljavax/net/ssl/SSLServerSocketFactory;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetSocketFactory()Ljavax/net/ssl/SSLSocketFactory;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetSupportedSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit([Ljavax/net/ssl/KeyManager;[Ljavax/net/ssl/TrustManager;Ljava/security/SecureRandom;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"fields": {"$VALUES:[Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINISHED:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEED_TASK:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEED_UNWRAP:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NEED_WRAP:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "NOT_HANDSHAKING:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLEngine;": {"fields": {"peerHost:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "peerPort:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "beginHandshake()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeInbound()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeOutbound()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getApplicationProtocol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDelegatedTask()Ljava/lang/Runnable;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnableSessionCreation()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeApplicationProtocol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeApplicationProtocolSelector()Ljava/util/function/BiFunction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeStatus()Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNeedClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerHost()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseClientMode()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWantClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInboundDone()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOutboundDone()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnableSessionCreation(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledCipherSuites([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledProtocols([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHandshakeApplicationProtocolSelector(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNeedClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSSLParameters(Ljavax/net/ssl/SSLParameters;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseClientMode(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWantClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap(Ljava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap(Ljava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;II)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([Ljava/nio/ByteBuffer;IILjava/nio/ByteBuffer;)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wrap([Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)Ljavax/net/ssl/SSLEngineResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLEngineResult$Status;": {"fields": {"$VALUES:[Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BUFFER_OVERFLOW:Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "BUFFER_UNDERFLOW:Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "CLOSED:Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "OK:Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljavax/net/ssl/SSLEngineResult$Status;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "values()[Ljavax/net/ssl/SSLEngineResult$Status;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLEngineResult;": {"fields": {"bytesConsumed:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "bytesProduced:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handshakeStatus:Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "status:Ljavax/net/ssl/SSLEngineResult$Status;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/SSLEngineResult$Status;Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bytesConsumed()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bytesProduced()I": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeStatus()Ljavax/net/ssl/SSLEngineResult$HandshakeStatus;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStatus()Ljavax/net/ssl/SSLEngineResult$Status;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLException;": {"fields": {"serialVersionUID:J": {"value": "0x3e9a5079c293dfe7L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLHandshakeException;": {"fields": {"serialVersionUID:J": {"value": "-0x460692526072c36aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLKeyException;": {"fields": {"serialVersionUID:J": {"value": "-0x70044fb78e6dbed2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLParameters;": {"fields": {"algorithmConstraints:Ljava/security/AlgorithmConstraints;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "applicationProtocols:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cipherSuites:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "identificationAlgorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needClientAuth:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "preferLocalCipherSuites:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "protocols:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sniMatchers:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sniNames:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "wantClientAuth:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "([Ljava/lang/String;[Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone([Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithmConstraints()Ljava/security/AlgorithmConstraints;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getApplicationProtocols()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCipherSuites()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEndpointIdentificationAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNeedClientAuth()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtocols()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSNIMatchers()Ljava/util/Collection;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerNames()Ljava/util/List;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseCipherSuitesOrder()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWantClientAuth()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAlgorithmConstraints(Ljava/security/AlgorithmConstraints;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setApplicationProtocols([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCipherSuites([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEndpointIdentificationAlgorithm(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNeedClientAuth(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setProtocols([Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSNIMatchers(Ljava/util/Collection;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setServerNames(Ljava/util/List;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseCipherSuitesOrder(Z)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWantClientAuth(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLPeerUnverifiedException;": {"fields": {"serialVersionUID:J": {"value": "-0x7bc87985330147e3L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLServerSocket;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(II)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(IILjava/net/InetAddress;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnableSessionCreation()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNeedClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseClientMode()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWantClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnableSessionCreation(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledCipherSuites([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledProtocols([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNeedClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSSLParameters(Ljavax/net/ssl/SSLParameters;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseClientMode(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWantClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLProtocolException;": {"fields": {"serialVersionUID:J": {"value": "0x4b90c3a533ed3ad0L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSession;": {"fields": {}, "methods": {"getApplicationBufferSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCipherSuite()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCreationTime()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getId()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastAccessedTime()J": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPacketBufferSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerCertificateChain()[Ljavax/security/cert/X509Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerHost()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPort()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPeerPrincipal()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProtocol()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSessionContext()Ljavax/net/ssl/SSLSessionContext;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValueNames()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invalidate()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "putValue(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeValue(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLServerSocketFactory;": {"fields": {"defaultServerSocketFactory:Ljavax/net/ssl/SSLServerSocketFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}, "lastVersion:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljavax/net/ServerSocketFactory;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "log(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDefaultCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSessionBindingEvent;": {"fields": {"serialVersionUID:J": {"value": "0xe2c21a1fb80a9L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/SSLSession;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSessionContext;": {"fields": {}, "methods": {"getIds()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSession([B)Ljavax/net/ssl/SSLSession;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSessionCacheSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSessionTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSessionCacheSize(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSessionTimeout(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSessionBindingListener;": {"fields": {}, "methods": {"valueBound(Ljavax/net/ssl/SSLSessionBindingEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valueUnbound(Ljavax/net/ssl/SSLSessionBindingEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSocketFactory;": {"fields": {"DEBUG:Z": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "defaultSocketFactory:Ljavax/net/ssl/SSLSocketFactory;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-p", "hiddenapi_domain": null}, "lastVersion:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefault()Ljavax/net/SocketFactory;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSecurityProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "log(Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createSocket(Ljava/net/Socket;Ljava/io/InputStream;Z)Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "createSocket(Ljava/net/Socket;Ljava/lang/String;IZ)Ljava/net/Socket;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/SSLSocketFactory$1;": {"fields": {"val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/net/ssl/SSLSocket;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;ILjava/net/InetAddress;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/net/InetAddress;ILjava/net/InetAddress;I)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addHandshakeCompletedListener(Ljavax/net/ssl/HandshakeCompletedListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getApplicationProtocol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnableSessionCreation()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEnabledProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeApplicationProtocol()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeApplicationProtocolSelector()Ljava/util/function/BiFunction;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHandshakeSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNeedClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSSLParameters()Ljavax/net/ssl/SSLParameters;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSession()Ljavax/net/ssl/SSLSession;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedCipherSuites()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedProtocols()[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseClientMode()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getWantClientAuth()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeHandshakeCompletedListener(Ljavax/net/ssl/HandshakeCompletedListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnableSessionCreation(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledCipherSuites([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEnabledProtocols([Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setHandshakeApplicationProtocolSelector(Ljava/util/function/BiFunction;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNeedClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSSLParameters(Ljavax/net/ssl/SSLParameters;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseClientMode(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setWantClientAuth(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startHandshake()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/StandardConstants;": {"fields": {"SNI_HOST_NAME:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/net/ssl/TrustManager;": {"fields": {}, "methods": {}}, "Ljavax/net/ssl/TrustManagerFactory$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/net/ssl/TrustManagerFactory;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "factorySpi:Ljavax/net/ssl/TrustManagerFactorySpi;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/net/ssl/TrustManagerFactorySpi;Ljava/security/Provider;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;)Ljavax/net/ssl/TrustManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Ljavax/net/ssl/TrustManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance(Ljava/lang/String;Ljava/security/Provider;)Ljavax/net/ssl/TrustManagerFactory;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrustManagers()[Ljavax/net/ssl/TrustManager;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/KeyStore;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljavax/net/ssl/ManagerFactoryParameters;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/X509ExtendedKeyManager;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseEngineClientAlias([Ljava/lang/String;[Ljava/security/Principal;Ljavax/net/ssl/SSLEngine;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseEngineServerAlias(Ljava/lang/String;[Ljava/security/Principal;Ljavax/net/ssl/SSLEngine;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/TrustManagerFactorySpi;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetTrustManagers()[Ljavax/net/ssl/TrustManager;": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljava/security/KeyStore;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineInit(Ljavax/net/ssl/ManagerFactoryParameters;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/X509KeyManager;": {"fields": {}, "methods": {"chooseClientAlias([Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "chooseServerAlias(Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateChain(Ljava/lang/String;)[Ljava/security/cert/X509Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getClientAliases(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateKey(Ljava/lang/String;)Ljava/security/PrivateKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getServerAliases(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/X509ExtendedTrustManager;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkClientTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/net/Socket;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkClientTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljavax/net/ssl/SSLEngine;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkServerTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/net/Socket;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkServerTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljavax/net/ssl/SSLEngine;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/net/ssl/X509TrustManager;": {"fields": {}, "methods": {"checkClientTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkServerTrusted([Ljava/security/cert/X509Certificate;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAcceptedIssuers()[Ljava/security/cert/X509Certificate;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/AuthPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$1;": {"fields": {"val$acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljavax/security/auth/Subject;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/security/auth/PrivateCredentialPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getActions()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCredentialClass()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipals()[[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implies(Ljava/security/Permission;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$2;": {"fields": {"val$acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$subject:Ljavax/security/auth/Subject;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/security/AccessControlContext;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/security/auth/Destroyable;": {"fields": {}, "methods": {"destroy()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDestroyed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/DestroyFailedException;": {"fields": {"serialVersionUID:J": {"value": "-0x6c1c2ebfec5522eaL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$ClassSet;": {"fields": {"c:Ljava/lang/Class;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "set:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "this$0:Ljavax/security/auth/Subject;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "which:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject;ILjava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "populateSet()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$ClassSet$1;": {"fields": {"this$1:Ljavax/security/auth/Subject$ClassSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$iterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$ClassSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$AuthPermissionHolder;": {"fields": {"DO_AS_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DO_AS_PRIVILEGED_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GET_SUBJECT_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFY_PRINCIPALS_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFY_PRIVATE_CREDENTIALS_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "MODIFY_PUBLIC_CREDENTIALS_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SET_READ_ONLY_PERMISSION:Ljavax/security/auth/AuthPermission;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/security/auth/Subject$SecureSet$3;": {"fields": {"this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet$2;": {"fields": {"this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet$1;": {"fields": {"i:Ljava/util/ListIterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$list:Ljava/util/LinkedList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/LinkedList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet$4;": {"fields": {"this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet$5;": {"fields": {"this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet$6;": {"fields": {"this$0:Ljavax/security/auth/Subject$SecureSet;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$e:Ljava/util/Iterator;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/Subject$SecureSet;Ljava/util/Iterator;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject$SecureSet;": {"fields": {"serialPersistentFields:[Ljava/io/ObjectStreamField;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x6dcc328017557e27L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "elements:Ljava/util/LinkedList;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subject:Ljavax/security/auth/Subject;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "which:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetwhich(Ljavax/security/auth/Subject$SecureSet;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljavax/security/auth/Subject;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljavax/security/auth/Subject;ILjava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/SubjectDomainCombiner;": {"fields": {}, "methods": {"(Ljavax/security/auth/Subject;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "combine([Ljava/security/ProtectionDomain;[Ljava/security/ProtectionDomain;)[Ljava/security/ProtectionDomain;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubject()Ljavax/security/auth/Subject;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/Subject;": {"fields": {"NULL_PD_ARRAY:[Ljava/security/ProtectionDomain;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRINCIPAL_SET:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRIV_CREDENTIAL_SET:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PUB_CREDENTIAL_SET:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x734dcd6cffcc0598L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "principals:Ljava/util/Set;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privCredentials:Ljava/util/Set;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pubCredentials:Ljava/util/Set;": {"value": null, "other": [".field", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readOnly:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(ZLjava/util/Set;Ljava/util/Set;Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createContext(Ljavax/security/auth/Subject;Ljava/security/AccessControlContext;)Ljava/security/AccessControlContext;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "doAs(Ljavax/security/auth/Subject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doAs(Ljavax/security/auth/Subject;Ljava/security/PrivilegedExceptionAction;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doAsPrivileged(Ljavax/security/auth/Subject;Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "doAsPrivileged(Ljavax/security/auth/Subject;Ljava/security/PrivilegedExceptionAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCredHashCode(Ljava/lang/Object;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSubject(Ljava/security/AccessControlContext;)Ljavax/security/auth/Subject;": {"other": [".method", "public", "static"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipals()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrincipals(Ljava/lang/Class;)Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateCredentials()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrivateCredentials(Ljava/lang/Class;)Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicCredentials()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicCredentials(Ljava/lang/Class;)Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString(Z)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Ljavax/security/auth/callback/PasswordCallback;": {"fields": {"serialVersionUID:J": {"value": "0x1f7780e27139c5e6L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "echoOn:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "inputPassword:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prompt:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearPassword()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()[C": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPrompt()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEchoOn()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPassword([C)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/callback/UnsupportedCallbackException;": {"fields": {"serialVersionUID:J": {"value": "-0x5f63c70ff58df497L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "callback:Ljavax/security/auth/callback/Callback;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/security/auth/callback/Callback;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/security/auth/callback/Callback;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCallback()Ljavax/security/auth/callback/Callback;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/callback/Callback;": {"fields": {}, "methods": {}}, "Ljavax/security/auth/callback/CallbackHandler;": {"fields": {}, "methods": {"handle([Ljavax/security/auth/callback/Callback;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/login/LoginException;": {"fields": {"serialVersionUID:J": {"value": "-0x40ef790a8a202ae8L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/auth/x500/X500Principal;": {"fields": {"CANONICAL:Ljava/lang/String;": {"value": "\"CANONICAL\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RFC1779:Ljava/lang/String;": {"value": "\"RFC1779\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "RFC2253:Ljava/lang/String;": {"value": "\"RFC2253\"", "other": [".field", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "serialVersionUID:J": {"value": "-0x6f200c377478839L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "thisX500Name:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Lsun/security/x509/X500Name;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName(Ljava/lang/String;Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/Certificate;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/CertificateEncodingException;": {"fields": {"serialVersionUID:J": {"value": "-0x71a059ad371cb20eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/CertificateException;": {"fields": {"serialVersionUID:J": {"value": "-0x4fe5bb0f873bab0aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/CertificateExpiredException;": {"fields": {"serialVersionUID:J": {"value": "0x46a9005375c6253bL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/CertificateNotYetValidException;": {"fields": {"serialVersionUID:J": {"value": "-0x7c91c54ebb5028a2L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/CertificateParsingException;": {"fields": {"serialVersionUID:J": {"value": "-0x754221431816abe5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/security/cert/X509Certificate$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljavax/security/cert/X509Certificate;": {"fields": {"DEFAULT_X509_CERT_CLASS:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "X509Provider:Ljava/lang/String;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "X509_PROVIDER:Ljava/lang/String;": {"value": "\"cert.provider.x509v1\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInst(Ljava/lang/Object;)Ljavax/security/cert/X509Certificate;": {"other": [".method", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInstance(Ljava/io/InputStream;)Ljavax/security/cert/X509Certificate;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInstance([B)Ljavax/security/cert/X509Certificate;": {"other": [".method", "public", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/util/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectDN()Ljava/security/Principal;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/CommonDataSource;": {"fields": {}, "methods": {"getLogWriter()Ljava/io/PrintWriter;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLoginTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParentLogger()Ljava/util/logging/Logger;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLogWriter(Ljava/io/PrintWriter;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLoginTimeout(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/ConnectionEvent;": {"fields": {"serialVersionUID:J": {"value": "-0x433690c9b56a83b2L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "ex:Ljava/sql/SQLException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/sql/PooledConnection;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/sql/PooledConnection;Ljava/sql/SQLException;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLException()Ljava/sql/SQLException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/ConnectionEventListener;": {"fields": {}, "methods": {"connectionClosed(Ljavax/sql/ConnectionEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connectionErrorOccurred(Ljavax/sql/ConnectionEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/ConnectionPoolDataSource;": {"fields": {}, "methods": {"getPooledConnection()Ljavax/sql/PooledConnection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPooledConnection(Ljava/lang/String;Ljava/lang/String;)Ljavax/sql/PooledConnection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/DataSource;": {"fields": {}, "methods": {"getConnection()Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection(Ljava/lang/String;Ljava/lang/String;)Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/PooledConnection;": {"fields": {}, "methods": {"addConnectionEventListener(Ljavax/sql/ConnectionEventListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addStatementEventListener(Ljavax/sql/StatementEventListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnection()Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeConnectionEventListener(Ljavax/sql/ConnectionEventListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeStatementEventListener(Ljavax/sql/StatementEventListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSet;": {"fields": {}, "methods": {"addRowSetListener(Ljavax/sql/RowSetListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clearParameters()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "execute()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCommand()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDataSourceName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEscapeProcessing()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxFieldSize()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaxRows()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPassword()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getQueryTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTransactionIsolation()I": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTypeMap()Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUrl()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUsername()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeRowSetListener(Ljavax/sql/RowSetListener;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setArray(ILjava/sql/Array;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAsciiStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBigDecimal(ILjava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBigDecimal(Ljava/lang/String;Ljava/math/BigDecimal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(ILjava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBinaryStream(Ljava/lang/String;Ljava/io/InputStream;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(ILjava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/io/InputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/io/InputStream;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBlob(Ljava/lang/String;Ljava/sql/Blob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBoolean(Ljava/lang/String;Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(IB)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setByte(Ljava/lang/String;B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(I[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBytes(Ljava/lang/String;[B)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(ILjava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCharacterStream(Ljava/lang/String;Ljava/io/Reader;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(ILjava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setClob(Ljava/lang/String;Ljava/sql/Clob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCommand(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setConcurrency(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDataSourceName(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(ILjava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(ILjava/sql/Date;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(Ljava/lang/String;Ljava/sql/Date;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDate(Ljava/lang/String;Ljava/sql/Date;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(ID)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDouble(Ljava/lang/String;D)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setEscapeProcessing(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(IF)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setFloat(Ljava/lang/String;F)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setInt(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(IJ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setLong(Ljava/lang/String;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxFieldSize(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMaxRows(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNCharacterStream(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(ILjava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/io/Reader;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/io/Reader;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNClob(Ljava/lang/String;Ljava/sql/NClob;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(IILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(Ljava/lang/String;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNull(Ljava/lang/String;ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(ILjava/lang/Object;II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setObject(Ljava/lang/String;Ljava/lang/Object;II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPassword(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setQueryTimeout(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly(Z)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRef(ILjava/sql/Ref;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRowId(ILjava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRowId(Ljava/lang/String;Ljava/sql/RowId;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSQLXML(ILjava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSQLXML(Ljava/lang/String;Ljava/sql/SQLXML;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(IS)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setShort(Ljava/lang/String;S)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setString(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(ILjava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(ILjava/sql/Time;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(Ljava/lang/String;Ljava/sql/Time;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTime(Ljava/lang/String;Ljava/sql/Time;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(ILjava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(ILjava/sql/Timestamp;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(Ljava/lang/String;Ljava/sql/Timestamp;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimestamp(Ljava/lang/String;Ljava/sql/Timestamp;Ljava/util/Calendar;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTransactionIsolation(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setType(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTypeMap(Ljava/util/Map;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setURL(ILjava/net/URL;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUrl(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUsername(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetEvent;": {"fields": {"serialVersionUID:J": {"value": "-0x1a06f0a2ba3d3565L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljavax/sql/RowSet;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetInternal;": {"fields": {}, "methods": {"getConnection()Ljava/sql/Connection;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOriginal()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOriginalRow()Ljava/sql/ResultSet;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParams()[Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMetaData(Ljavax/sql/RowSetMetaData;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetListener;": {"fields": {}, "methods": {"cursorMoved(Ljavax/sql/RowSetEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rowChanged(Ljavax/sql/RowSetEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rowSetChanged(Ljavax/sql/RowSetEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetMetaData;": {"fields": {}, "methods": {"setAutoIncrement(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCaseSensitive(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCatalogName(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnCount(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnDisplaySize(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnLabel(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnName(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnType(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setColumnTypeName(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCurrency(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setNullable(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPrecision(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setScale(II)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSchemaName(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSearchable(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSigned(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTableName(ILjava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/StatementEvent;": {"fields": {"exception:Ljava/sql/SQLException;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "statement:Ljava/sql/PreparedStatement;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljavax/sql/PooledConnection;Ljava/sql/PreparedStatement;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "(Ljavax/sql/PooledConnection;Ljava/sql/PreparedStatement;Ljava/sql/SQLException;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSQLException()Ljava/sql/SQLException;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getStatement()Ljava/sql/PreparedStatement;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/StatementEventListener;": {"fields": {}, "methods": {"statementClosed(Ljavax/sql/StatementEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "statementErrorOccurred(Ljavax/sql/StatementEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetWriter;": {"fields": {}, "methods": {"writeData(Ljavax/sql/RowSetInternal;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljavax/sql/RowSetReader;": {"fields": {}, "methods": {"readData(Ljavax/sql/RowSetInternal;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/HotSpotIntrinsicCandidate;": {"fields": {}, "methods": {}}, "Ljdk/internal/math/FloatingDecimal$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Ljdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIG_10_POW:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_SMALL_TEN:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_MAX_SMALL_TEN:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_SMALL_10_POW:[F": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMALL_10_POW:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TINY_10_POW:[D": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decExponent:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digits:[C": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nDigits:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZI[CI)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"fields": {}, "methods": {"doubleValue()D": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floatValue()F": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatConsts;": {"fields": {"EXP_BIAS:I": {"value": "0x7f", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXP_BIT_MASK:I": {"value": "0x7f800000", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_EXPONENT:I": {"value": "0x7f", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_VALUE:F": {"value": "3.4028235E38f", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_EXPONENT:I": {"value": "-0x7e", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_NORMAL:F": {"value": "1.1754944E-38f", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_SUB_EXPONENT:I": {"value": "-0x95", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_VALUE:F": {"value": "1.4E-45f", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEGATIVE_INFINITY:F": {"value": "-Infinityf", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NaN:F": {"value": "NaNf", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POSITIVE_INFINITY:F": {"value": "Infinityf", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNIFICAND_WIDTH:I": {"value": "0x18", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNIF_BIT_MASK:I": {"value": "0x7fffff", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGN_BIT_MASK:I": {"value": "-0x80000000", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FDBigInteger;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONG_5_POW:[J": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONG_MASK:J": {"value": "0xffffffffL", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_FIVE_POW:I": {"value": "0x154", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POW_5_CACHE:[Ljdk/internal/math/FDBigInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMALL_5_POW:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ZERO:Ljdk/internal/math/FDBigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "data:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isImmutable:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nWords:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J[CII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljdk/internal/math/FDBigInteger;)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "big5pow(I)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "big5powRec(I)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkZeroTail([II)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftShift([II[IIII)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mult(I)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mult(Ljdk/internal/math/FDBigInteger;)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mult([IIII[I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mult([III[I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mult([II[II[I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multAddMe(II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multAndCarryBy10([II[I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multDiffMe(JLjdk/internal/math/FDBigInteger;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trimLeadingZeros()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfMulPow52(JII)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfPow2(I)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOfPow52(II)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addAndCmp(Ljdk/internal/math/FDBigInteger;Ljdk/internal/math/FDBigInteger;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmp(Ljdk/internal/math/FDBigInteger;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cmpPow52(II)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizationBias()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftInplaceSub(Ljdk/internal/math/FDBigInteger;)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftShift(I)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeImmutable()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multBy10()Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multByPow52(II)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quoRemIteration(Ljdk/internal/math/FDBigInteger;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rightInplaceSub(Ljdk/internal/math/FDBigInteger;)Ljdk/internal/math/FDBigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toHexString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/math/DoubleConsts;": {"fields": {"EXP_BIAS:I": {"value": "0x3ff", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXP_BIT_MASK:J": {"value": "0x7ff0000000000000L", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_EXPONENT:I": {"value": "0x3ff", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_VALUE:D": {"value": "1.7976931348623157E308", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_EXPONENT:I": {"value": "-0x3fe", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_NORMAL:D": {"value": "2.2250738585072014E-308", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_SUB_EXPONENT:I": {"value": "-0x432", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_VALUE:D": {"value": "4.9E-324", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEGATIVE_INFINITY:D": {"value": "-Infinity", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NaN:D": {"value": "NaN", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POSITIVE_INFINITY:D": {"value": "Infinity", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNIFICAND_WIDTH:I": {"value": "0x35", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNIF_BIT_MASK:J": {"value": "0xfffffffffffffL", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGN_BIT_MASK:J": {"value": "-0x8000000000000000L", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"fields": {}, "methods": {"appendTo(Ljava/lang/Appendable;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decimalDigitsExact()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsRoundedUp()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDecimalExponent()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDigits([C)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExceptional()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toJavaFormatString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "N_5_BITS:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insignificantDigitsNumber:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buffer:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decExponent:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decimalDigitsRoundedUp:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digits:[C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exactDecimalConversion:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstDigitIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nDigits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mdtoa(Ljdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer;IJIZ)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$msetSign(Ljdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Z[C)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "developLongDigits(IJI)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dtoa(IJIZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "estimateDecExp(JI)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChars([C)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insignificantDigits(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insignificantDigitsForPow2(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "roundup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSign(Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendTo(Ljava/lang/Appendable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decimalDigitsExact()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsRoundedUp()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDecimalExponent()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDigits([C)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExceptional()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toJavaFormatString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$HexFloatPattern;": {"fields": {"VALUE:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetVALUE()Ljava/util/regex/Pattern;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "image:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendTo(Ljava/lang/Appendable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decimalDigitsExact()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsRoundedUp()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDecimalExponent()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDigits([C)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExceptional()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNegative()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toJavaFormatString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer;": {"fields": {"doubleVal:D": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floatVal:F": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(DF)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doubleValue()D": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floatValue()F": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FloatingDecimal;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "A2BC_NEGATIVE_INFINITY:Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "A2BC_NEGATIVE_ZERO:Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "A2BC_NOT_A_NUMBER:Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "A2BC_POSITIVE_INFINITY:Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "A2BC_POSITIVE_ZERO:Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "B2AC_NEGATIVE_INFINITY:Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "B2AC_NEGATIVE_ZERO:Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "B2AC_NOT_A_NUMBER:Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "B2AC_POSITIVE_INFINITY:Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "B2AC_POSITIVE_ZERO:Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIG_DECIMAL_EXPONENT:I": {"value": "0x144", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXP_ONE:J": {"value": "0x3ff0000000000000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXP_SHIFT:I": {"value": "0x34", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FRACT_HOB:J": {"value": "0x10000000000000L", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFINITY_LENGTH:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFINITY_REP:Ljava/lang/String;": {"value": "\"Infinity\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INT_DECIMAL_DIGITS:I": {"value": "0x9", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_DECIMAL_DIGITS:I": {"value": "0xf", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_DECIMAL_EXPONENT:I": {"value": "0x134", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_NDIGITS:I": {"value": "0x44c", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_SMALL_BIN_EXP:I": {"value": "0x3e", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_DECIMAL_EXPONENT:I": {"value": "-0x144", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_SMALL_BIN_EXP:I": {"value": "-0x15", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAN_LENGTH:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAN_REP:Ljava/lang/String;": {"value": "\"NaN\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_EXP_SHIFT:I": {"value": "0x17", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_FRACT_HOB:I": {"value": "0x800000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_MAX_DECIMAL_DIGITS:I": {"value": "0x7", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_MAX_DECIMAL_EXPONENT:I": {"value": "0x26", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_MAX_NDIGITS:I": {"value": "0xc8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_MIN_DECIMAL_EXPONENT:I": {"value": "-0x2d", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadLocalBinaryToASCIIBuffer:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendTo(DLjava/lang/Appendable;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendTo(FLjava/lang/Appendable;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBinaryToASCIIBuffer()Ljdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBinaryToASCIIConverter(D)Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBinaryToASCIIConverter(DZ)Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBinaryToASCIIConverter(F)Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHexDigit(Ljava/lang/String;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseDouble(Ljava/lang/String;)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseFloat(Ljava/lang/String;)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseHexString(Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readJavaFormatString(Ljava/lang/String;)Ljdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripLeadingZeros(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toJavaFormatString(D)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toJavaFormatString(F)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FormattedFloatingDecimal$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/math/FormattedFloatingDecimal$2;": {"fields": {"$SwitchMap$jdk$internal$math$FormattedFloatingDecimal$Form:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"fields": {"$VALUES:[Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMPATIBLE:Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DECIMAL_FLOAT:Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GENERAL:Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SCIENTIFIC:Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljdk/internal/math/FormattedFloatingDecimal$Form;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/math/FormattedFloatingDecimal;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadLocalCharBuffer:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decExponentRounded:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exponent:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mantissa:[C": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjdk/internal/math/FormattedFloatingDecimal$Form;Ljdk/internal/math/FloatingDecimal$BinaryToASCIIConverter;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "applyPrecision(I[CII)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(ZI)[C": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillCompatible(I[CIIZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillDecimal(I[CIIZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fillScientific(I[CIIZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBuffer()[C": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(DILjdk/internal/math/FormattedFloatingDecimal$Form;)Ljdk/internal/math/FormattedFloatingDecimal;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExponent()[C": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExponentRounded()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMantissa()[C": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/InnocuousThread$1;": {"fields": {"val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$target:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/InnocuousThread$2;": {"fields": {"val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$target:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Runnable;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/InnocuousThread$3;": {"fields": {"val$root:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/ThreadGroup;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/ThreadGroup;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/InnocuousThread-IA;": {"fields": {}, "methods": {}}, "Ljdk/internal/misc/InnocuousThread;": {"fields": {"ACC:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONTEXTCLASSLOADER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHERITABLE_THREAD_LOCALS:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHERITEDACCESSCONTROLCONTEXT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INNOCUOUSTHREADGROUP:Ljava/lang/ThreadGroup;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THREAD_LOCALS:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSAFE:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadNumber:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasRun:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetINNOCUOUSTHREADGROUP()Ljava/lang/ThreadGroup;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/ClassLoader;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/ClassLoader;Ljdk/internal/misc/InnocuousThread-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newName()Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSystemThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSystemThread(Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eraseThreadLocals()V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setContextClassLoader(Ljava/lang/ClassLoader;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUncaughtExceptionHandler(Ljava/lang/Thread$UncaughtExceptionHandler;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/misc/JavaIOFileDescriptorAccess;": {"fields": {}, "methods": {"get(Ljava/io/FileDescriptor;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHandle(Ljava/io/FileDescriptor;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/io/FileDescriptor;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHandle(Ljava/io/FileDescriptor;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/JavaObjectInputStreamAccess;": {"fields": {}, "methods": {"checkArray(Ljava/io/ObjectInputStream;Ljava/lang/Class;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/Unsafe;": {"fields": {"ADDRESS_SIZE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_BOOLEAN_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_BOOLEAN_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_BYTE_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_BYTE_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_CHAR_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_CHAR_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_DOUBLE_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_DOUBLE_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_FLOAT_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_FLOAT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_INT_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_INT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_LONG_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_LONG_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_OBJECT_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_OBJECT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_SHORT_BASE_OFFSET:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ARRAY_SHORT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INVALID_FIELD_OFFSET:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THE_ONE:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "theUnsafe:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkNativeAddress(J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkOffset(Ljava/lang/Object;J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPointer(Ljava/lang/Object;J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPrimitiveArray(Ljava/lang/Class;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPrimitivePointer(Ljava/lang/Object;J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkSize(J)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyMemory0(Ljava/lang/Object;JLjava/lang/Object;JJ)V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyMemoryChecks(Ljava/lang/Object;JLjava/lang/Object;JJ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getArrayBaseOffsetForComponentType(Ljava/lang/Class;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getArrayIndexScaleForComponentType(Ljava/lang/Class;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnsafe()Ljdk/internal/misc/Unsafe;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidInput()Ljava/lang/RuntimeException;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "is32BitClean(J)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(BBBB)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInt(SS)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(BBBBBBBB)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(II)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeLong(SSSS)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeShort(BB)S": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnsignedInt(B)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnsignedInt(S)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnsignedLong(B)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnsignedLong(I)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnsignedLong(S)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addressSize()I": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocateInstance(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocateMemory(J)J": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayBaseOffset(Ljava/lang/Class;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayIndexScale(Ljava/lang/Class;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSetInt(Ljava/lang/Object;JII)Z": {"other": [".method", "public", "final", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSetLong(Ljava/lang/Object;JJJ)Z": {"other": [".method", "public", "final", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSetObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "final", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSwapInt(Ljava/lang/Object;JII)Z": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSwapLong(Ljava/lang/Object;JJJ)Z": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyMemory(JJJ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyMemory(Ljava/lang/Object;JLjava/lang/Object;JJ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureClassInitialized(Ljava/lang/Class;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "freeMemory(J)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullFence()V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndAddInt(Ljava/lang/Object;JI)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndAddLong(Ljava/lang/Object;JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndSetInt(Ljava/lang/Object;JI)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndSetLong(Ljava/lang/Object;JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAndSetObject(Ljava/lang/Object;JLjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBoolean(Ljava/lang/Object;J)Z": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getByte(J)B": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getByte(Ljava/lang/Object;J)B": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(J)C": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(Ljava/lang/Object;J)C": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble(J)D": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble(Ljava/lang/Object;J)D": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat(J)F": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat(Ljava/lang/Object;J)F": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(J)I": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(Ljava/lang/Object;J)I": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntAcquire(Ljava/lang/Object;J)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntUnaligned(Ljava/lang/Object;J)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntVolatile(Ljava/lang/Object;J)I": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(J)J": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(Ljava/lang/Object;J)J": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongAcquire(Ljava/lang/Object;J)J": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongUnaligned(Ljava/lang/Object;J)J": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLongVolatile(Ljava/lang/Object;J)J": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getObject(Ljava/lang/Object;J)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getObjectAcquire(Ljava/lang/Object;J)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getObjectVolatile(Ljava/lang/Object;J)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort(J)S": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort(Ljava/lang/Object;J)S": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadFence()V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "objectFieldOffset(Ljava/lang/Class;Ljava/lang/String;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "objectFieldOffset(Ljava/lang/reflect/Field;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageSize()I": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "park(ZJ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putBoolean(Ljava/lang/Object;JZ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putByte(JB)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putByte(Ljava/lang/Object;JB)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar(JC)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar(Ljava/lang/Object;JC)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(JD)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(Ljava/lang/Object;JD)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(JF)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(Ljava/lang/Object;JF)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(JI)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntRelease(Ljava/lang/Object;JI)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIntVolatile(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongRelease(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLongVolatile(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putObject(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putObjectRelease(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putObjectVolatile(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putOrderedInt(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putOrderedLong(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putOrderedObject(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(JS)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(Ljava/lang/Object;JS)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMemory(JJB)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "storeFence()V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unpark(Ljava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/SharedSecrets;": {"fields": {"javaIOFileDescriptorAccess:Ljdk/internal/misc/JavaIOFileDescriptorAccess;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaObjectInputStreamAccess:Ljdk/internal/misc/JavaObjectInputStreamAccess;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJavaIOFileDescriptorAccess()Ljdk/internal/misc/JavaIOFileDescriptorAccess;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJavaObjectInputStreamAccess()Ljdk/internal/misc/JavaObjectInputStreamAccess;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setJavaIOFileDescriptorAccess(Ljdk/internal/misc/JavaIOFileDescriptorAccess;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setJavaObjectInputStreamAccess(Ljdk/internal/misc/JavaObjectInputStreamAccess;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/misc/VM;": {"fields": {"JVMTI_THREAD_STATE_ALIVE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_RUNNABLE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_TERMINATED:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_WAITING_INDEFINITELY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_GREEN:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_RED:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_YELLOW:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowArraySyntax:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "booted:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultAllowArraySyntax:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "directMemory:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalRefCount:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageAlignDirectMemory:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peakFinalRefCount:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "savedProps:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suspended:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addFinalRefCount(I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowArraySyntax()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowThreadSuspension(Ljava/lang/ThreadGroup;Z)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asChange(II)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asChange_otherthread(II)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitBooted()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "booted()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFinalRefCount()I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNanoTimeAdjustment(J)J": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPeakFinalRefCount()I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSavedProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getState()I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeOSEnvironment()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isBooted()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirectMemoryPageAligned()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxDirectMemory()J": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "saveAndRemoveProperties(Ljava/util/Properties;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suspendThreads()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadsSuspended()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toThreadState(I)Ljava/lang/Thread$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsuspendSomeThreads()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsuspendThreads()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/Cleaner$1;": {"fields": {"this$0:Ljdk/internal/ref/Cleaner;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$x:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljdk/internal/ref/Cleaner;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/Cleaner;": {"fields": {"dummyQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first:Ljdk/internal/ref/Cleaner;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljdk/internal/ref/Cleaner;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prev:Ljdk/internal/ref/Cleaner;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thunk:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/Runnable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljdk/internal/ref/Cleaner;)Ljdk/internal/ref/Cleaner;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;Ljava/lang/Runnable;)Ljdk/internal/ref/Cleaner;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljdk/internal/ref/Cleaner;)Z": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clean()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerFactory$1$1;": {"fields": {"this$0:Ljdk/internal/ref/CleanerFactory$1;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$r:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljdk/internal/ref/CleanerFactory$1;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerFactory$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/ref/CleanerFactory;": {"fields": {"commonCleaner:Ljava/lang/ref/Cleaner;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner()Ljava/lang/ref/Cleaner;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerImpl$CleanerCleanable;": {"fields": {}, "methods": {"(Ljava/lang/ref/Cleaner;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "performCleanup()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerImpl$InnocuousThreadFactory$1;": {"fields": {"this$0:Ljdk/internal/ref/CleanerImpl$InnocuousThreadFactory;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$r:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljdk/internal/ref/CleanerImpl$InnocuousThreadFactory;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerImpl$InnocuousThreadFactory;": {"fields": {"factory:Ljava/util/concurrent/ThreadFactory;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanerThreadNumber:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "factory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/internal/ref/CleanerImpl$PhantomCleanableRef;": {"fields": {"action:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/ref/Cleaner;Ljava/lang/Runnable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "performCleanup()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/CleanerImpl;": {"fields": {"cleanerImplAccess:Ljava/util/function/Function;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "phantomCleanableList:Ljdk/internal/ref/PhantomCleanable;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCleanerImpl(Ljava/lang/ref/Cleaner;)Ljdk/internal/ref/CleanerImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCleanerImplAccess(Ljava/util/function/Function;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "start(Ljava/lang/ref/Cleaner;Ljava/util/concurrent/ThreadFactory;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/ref/PhantomCleanable;": {"fields": {"list:Ljdk/internal/ref/PhantomCleanable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljdk/internal/ref/PhantomCleanable;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prev:Ljdk/internal/ref/PhantomCleanable;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/ref/Cleaner;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insert()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clean()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enqueue()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEnqueued()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isListEmpty()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "performCleanup()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/reflect/CallerSensitive;": {"fields": {}, "methods": {}}, "Ljdk/internal/reflect/Reflection;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureMemberAccess(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Object;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCallerClass()Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameClassPackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameClassPackage(Ljava/lang/ClassLoader;Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSubclassOf(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyMemberAccess(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Object;I)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/util/ArraysSupport;": {"fields": {"BIG_ENDIAN:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_BOOLEAN_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_BYTE_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_CHAR_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_DOUBLE_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_FLOAT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_INT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_LONG_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_ARRAY_SHORT_INDEX_SCALE:I": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOG2_BYTE_BIT_SIZE:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "U:Ljdk/internal/misc/Unsafe;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exactLog2(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([BI[BII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([B[BI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([CI[CII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([C[CI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([DI[DII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([D[DI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([FI[FII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([F[FI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([II[III)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([I[II)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([JI[JII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([J[JI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([SI[SII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([S[SI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([ZI[ZII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mismatch([Z[ZI)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "vectorizedMismatch(Ljava/lang/Object;JLjava/lang/Object;JII)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/util/Preconditions$1;": {"fields": {"val$f:Ljava/util/function/Function;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/function/Function;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "apply(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "apply(Ljava/lang/String;Ljava/util/List;)Ljava/lang/RuntimeException;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/util/Preconditions;": {"fields": {}, "methods": {"-$$Nest$smoutOfBoundsMessage(Ljava/lang/String;Ljava/util/List;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkFromIndexSize(IIILjava/util/function/BiFunction;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkFromToIndex(IIILjava/util/function/BiFunction;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIndex(IILjava/util/function/BiFunction;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBounds(Ljava/util/function/BiFunction;Ljava/lang/String;[Ljava/lang/Integer;)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsCheckFromIndexSize(Ljava/util/function/BiFunction;III)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsCheckFromToIndex(Ljava/util/function/BiFunction;III)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsCheckIndex(Ljava/util/function/BiFunction;II)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsExceptionFormatter(Ljava/util/function/Function;)Ljava/util/function/BiFunction;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outOfBoundsMessage(Ljava/lang/String;Ljava/util/List;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/vm/annotation/Contended;": {"fields": {}, "methods": {"value()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/internal/vm/annotation/ReservedStackAccess;": {"fields": {}, "methods": {}}, "Ljdk/internal/vm/annotation/Stable;": {"fields": {}, "methods": {}}, "Ljdk/net/ExtendedSocketOptions$1;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/ExtendedSocketOptions$ExtSocketOption;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"fields": {"instance:Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInstance(Ljava/lang/String;)Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flowSupported()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFlowOption(ILjdk/net/SocketFlow;)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getQuickAck(I)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpKeepAliveIntvl(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpKeepAliveTime(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpkeepAliveProbes(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keepAliveOptionsSupported()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quickAckSupported()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setFlowOption(IIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setQuickAck(IZ)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpKeepAliveIntvl(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpKeepAliveTime(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpkeepAliveProbes(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/ExtendedSocketOptions;": {"fields": {"SO_FLOW_SLA:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TCP_KEEPCOUNT:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TCP_KEEPIDLE:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TCP_KEEPINTERVAL:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TCP_QUICKACK:Ljava/net/SocketOption;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extendedOptions:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdAccess:Ljdk/internal/misc/JavaIOFileDescriptorAccess;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flowSupported:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keepAliveOptSupported:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "platformSocketOptions:Ljdk/net/ExtendedSocketOptions$PlatformSocketOptions;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quickAckSupported:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetflowSupported()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smcheckValueType(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetQuickAckOption(Ljava/io/FileDescriptor;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetTcpKeepAliveIntvl(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetTcpKeepAliveTime(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smgetTcpkeepAliveProbes(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsetFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsetQuickAckOption(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsetTcpKeepAliveIntvl(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsetTcpKeepAliveTime(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smsetTcpkeepAliveProbes(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkValueType(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getQuickAckOption(Ljava/io/FileDescriptor;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpKeepAliveIntvl(Ljava/io/FileDescriptor;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpKeepAliveTime(Ljava/io/FileDescriptor;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTcpkeepAliveProbes(Ljava/io/FileDescriptor;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options()Ljava/util/Set;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setQuickAckOption(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpKeepAliveIntvl(Ljava/io/FileDescriptor;I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpKeepAliveTime(Ljava/io/FileDescriptor;I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTcpkeepAliveProbes(Ljava/io/FileDescriptor;I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/NetworkPermission;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/SocketFlow;": {"fields": {"ALREADY_CREATED_VALUE:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HIGH_PRIORITY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_PROGRESS_VALUE:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NORMAL_PRIORITY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_CONNECTED_VALUE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_SUPPORTED_VALUE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_PERMISSION_VALUE:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_STATUS_VALUE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OK_VALUE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OTHER_VALUE:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSET:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bandwidth:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "priority:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "status:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljdk/net/SocketFlow;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bandwidth()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bandwidth(J)Ljdk/net/SocketFlow;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "priority()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "priority(I)Ljdk/net/SocketFlow;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "status()Ljdk/net/SocketFlow$Status;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "status(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Ljdk/net/Sockets$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/SocketFlow$Status;": {"fields": {"$VALUES:[Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALREADY_CREATED:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_PROGRESS:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_CONNECTED:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_SUPPORTED:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_PERMISSION:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_STATUS:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OK:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OTHER:Ljdk/net/SocketFlow$Status;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "from(I)Ljdk/net/SocketFlow$Status;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Ljdk/net/SocketFlow$Status;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Ljdk/net/SocketFlow$Status;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Ljdk/net/Sockets;": {"fields": {"dsiGetOption:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dsiSetOption:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "siGetOption:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "siSetOption:Ljava/lang/reflect/Method;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sminitMethods()V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/DatagramSocket;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/ServerSocket;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/net/Socket;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initMethods()V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initOptionSets()V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeGet(Ljava/lang/reflect/Method;Ljava/lang/Object;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeSet(Ljava/lang/reflect/Method;Ljava/lang/Object;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSupported(Ljava/lang/Class;Ljava/net/SocketOption;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/DatagramSocket;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/ServerSocket;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/Socket;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportedOptions(Ljava/lang/Class;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/invoke/util/BytecodeDescriptor;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseError(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseMethod(Ljava/lang/String;IILjava/lang/ClassLoader;)Ljava/util/List;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseMethod(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseSig(Ljava/lang/String;[IILjava/lang/ClassLoader;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparse(Ljava/lang/Class;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparse(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparse(Ljava/lang/invoke/MethodType;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparseMethod(Ljava/lang/Class;Ljava/util/List;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparseSig(Ljava/lang/Class;Ljava/lang/StringBuilder;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/invoke/util/Wrapper$1;": {"fields": {"$SwitchMap$sun$invoke$util$Wrapper:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/invoke/util/VerifyAccess;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALLOW_NESTMATE_ACCESS:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL_ACCESS_MODES:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PACKAGE_ALLOWED:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PACKAGE_ONLY:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROTECTED_OR_PACKAGE_ALLOWED:I": {"value": "0xc", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOutermostEnclosingClass(Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClassAccessible(Ljava/lang/Class;Ljava/lang/Class;I)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isMemberAccessible(Ljava/lang/Class;Ljava/lang/Class;ILjava/lang/Class;I)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isRelatedClass(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSamePackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSamePackageMember(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSubClass(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/invoke/util/Wrapper$Format;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BOOLEAN:I": {"value": "0x5", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHAR:I": {"value": "0x41", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLOAT:I": {"value": "0x1081", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLOATING:I": {"value": "0x1000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INT:I": {"value": "-0xf7f", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KIND_SHIFT:I": {"value": "0xc", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUM_MASK:I": {"value": "-0x4", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHORT:I": {"value": "-0xfbf", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNED:I": {"value": "-0x1000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZE_MASK:I": {"value": "0x3ff", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZE_SHIFT:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SLOT_MASK:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SLOT_SHIFT:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSIGNED:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VOID:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floating(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "format(III)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "other(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signed(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsigned(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/invoke/util/Wrapper;": {"fields": {"$VALUES:[Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BOOLEAN:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BYTE:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHAR:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COUNT:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOUBLE:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOUBLE_ZERO:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLOAT:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FLOAT_ZERO:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FROM_CHAR:[Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FROM_PRIM:[Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FROM_WRAP:[Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INT:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LONG:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OBJECT:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHORT:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VOID:Lsun/invoke/util/Wrapper;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "basicTypeChar:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyArray:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "format:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveSimpleName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrapperSimpleName:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrapperType:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;ILjava/lang/Class;Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;CLjava/lang/Object;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asPrimitiveType(Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asWrapperType(Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "basicTypeChar(Ljava/lang/Class;)C": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "boolValue(B)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkConvertibleFrom()Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convert(Ljava/lang/Object;Ljava/lang/Class;Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findPrimitiveType(Ljava/lang/Class;)Lsun/invoke/util/Wrapper;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findWrapperType(Ljava/lang/Class;)Lsun/invoke/util/Wrapper;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forBasicType(C)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forBasicType(Ljava/lang/Class;)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forPrimitiveType(C)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forPrimitiveType(Ljava/lang/Class;)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forWrapperType(Ljava/lang/Class;)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forceType(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashChar(C)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashPrim(Ljava/lang/Class;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashWrap(Ljava/lang/Class;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPrimitiveType(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isWrapperType(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newClassCastException(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/ClassCastException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalArgumentException(Ljava/lang/String;)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newIllegalArgumentException(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/RuntimeException;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "numberValue(Ljava/lang/Object;)Ljava/lang/Number;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/invoke/util/Wrapper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "arrayType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "basicTypeChar()C": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitWidth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cast(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convert(Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyArrayBoxing(Ljava/lang/Object;I[Ljava/lang/Object;II)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyArrayUnboxing([Ljava/lang/Object;ILjava/lang/Object;II)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "detailString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConvertibleFrom(Lsun/invoke/util/Wrapper;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDoubleWord()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFloating()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIntegral()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNumeric()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOther()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSigned()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSingleWord()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSubwordOrInt()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUnsigned()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeArray(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveSimpleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "primitiveType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stackSlots()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrapperSimpleName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrapperType()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrapperType(Ljava/lang/Class;)Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zero()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zero(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/ASCIICaseInsensitiveComparator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CASE_INSENSITIVE_ORDER:Ljava/util/Comparator;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLower(I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUpper(I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowerCaseHashCode(Ljava/lang/String;)I": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toLower(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUpper(I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/BASE64Decoder;": {"fields": {"pem_array:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pem_convert_array:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "decode_buffer:[B": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeAtom(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/BASE64Encoder;": {"fields": {"pem_array:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeAtom(Ljava/io/OutputStream;[BII)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/CEFormatException;": {"fields": {"serialVersionUID:J": {"value": "-0x631340ed0628070aL", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/misc/CEStreamExhausted;": {"fields": {"serialVersionUID:J": {"value": "-0x51ba59aa06550340L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/misc/CharacterDecoder;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeAtom(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBuffer(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBuffer(Ljava/io/InputStream;)[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBuffer(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "decodeBufferPrefix(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBufferSuffix(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBufferToByteBuffer(Ljava/io/InputStream;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeBufferToByteBuffer(Ljava/lang/String;)Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeLinePrefix(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodeLineSuffix(Ljava/io/PushbackInputStream;Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readFully(Ljava/io/InputStream;[BII)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/CharacterEncoder;": {"fields": {"pStream:Ljava/io/PrintStream;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBytes(Ljava/nio/ByteBuffer;)[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/nio/ByteBuffer;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode([BLjava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeAtom(Ljava/io/OutputStream;[BII)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer(Ljava/nio/ByteBuffer;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodeBuffer(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer(Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer([BLjava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBufferPrefix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodeBufferSuffix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLinePrefix(Ljava/io/OutputStream;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLineSuffix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readFully(Ljava/io/InputStream;[B)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/Cleaner$1;": {"fields": {"this$0:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$x:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/Cleaner;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/Cleaner;": {"fields": {"dummyQueue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "first:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "next:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prev:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "thunk:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Object;Ljava/lang/Runnable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Lsun/misc/Cleaner;)Lsun/misc/Cleaner;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "create(Ljava/lang/Object;Ljava/lang/Runnable;)Lsun/misc/Cleaner;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "remove(Lsun/misc/Cleaner;)Z": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clean()V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}}}, "Lsun/misc/CompoundEnumeration;": {"fields": {"enums:[Ljava/util/Enumeration;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([Ljava/util/Enumeration;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/misc/FileURLMapper;": {"fields": {"path:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exists()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPath()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/FpUtils;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copySign(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copySign(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExponent(D)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExponent(F)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ilogb(D)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ilogb(F)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFinite(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFinite(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isInfinite(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isInfinite(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNaN(D)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNaN(F)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUnordered(DD)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUnordered(FF)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextAfter(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextAfter(FD)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextDown(D)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextDown(F)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextUp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextUp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rawCopySign(DD)D": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "rawCopySign(FF)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scalb(DI)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scalb(FI)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signum(D)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signum(F)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ulp(D)D": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ulp(F)F": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/HexDumpEncoder;": {"fields": {"currentByte:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "thisLine:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "thisLineLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hexDigit(Ljava/io/PrintStream;B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeAtom(Ljava/io/OutputStream;[BII)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBufferPrefix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLinePrefix(Ljava/io/OutputStream;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLineSuffix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/IOUtils;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readFully(Ljava/io/InputStream;IZ)[B": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/misc/InvalidJarIndexException;": {"fields": {"serialVersionUID:J": {"value": "-0x557bff348f781914L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/JarIndex;": {"fields": {"INDEX_NAME:Ljava/lang/String;": {"value": "\"META-INF/INDEX.LIST\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "metaInfFilenames:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "indexMap:Ljava/util/HashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarFiles:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarMap:Ljava/util/HashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "addMapping(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addToList(Ljava/lang/String;Ljava/lang/String;Ljava/util/HashMap;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJarIndex(Ljava/util/jar/JarFile;)Lsun/misc/JarIndex;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJarIndex(Ljava/util/jar/JarFile;Lsun/misc/MetaIndex;)Lsun/misc/JarIndex;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseJars([Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/LinkedList;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJarFiles()[Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "merge(Lsun/misc/JarIndex;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/misc/JavaIOFileDescriptorAccess;": {"fields": {}, "methods": {"get(Ljava/io/FileDescriptor;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHandle(Ljava/io/FileDescriptor;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/io/FileDescriptor;I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHandle(Ljava/io/FileDescriptor;J)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/LRUCache;": {"fields": {"oa:[Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "moveToFront([Ljava/lang/Object;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/MessageUtils;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "err(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subst(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subst(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subst(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subst(Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "substProp(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "substProp(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "substProp(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "where()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/MetaIndex;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contents:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isClassOnlyJar:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "forJar(Ljava/io/File;)Lsun/misc/MetaIndex;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getJarMap()Ljava/util/Map;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "registerDirectory(Ljava/io/File;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "mayContain(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/REException;": {"fields": {"serialVersionUID:J": {"value": "0x409f834525bf2073L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/RegexpNode;": {"fields": {"c:C": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "depth:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exact:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstchild:Lsun/misc/RegexpNode;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextsibling:Lsun/misc/RegexpNode;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "re:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(CI)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(C)Lsun/misc/RegexpNode;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "find(C)Lsun/misc/RegexpNode;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "print(Ljava/io/PrintStream;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/RegexpPool;": {"fields": {"BIG:I": {"value": "0x7fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastDepth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prefixMachine:Lsun/misc/RegexpNode;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suffixMachine:Lsun/misc/RegexpNode;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/Object;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchAfter(Ljava/lang/String;I)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "match(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchNext(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "print(Ljava/io/PrintStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/RegexpTarget;": {"fields": {}, "methods": {"found(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/Resource;": {"fields": {"cis:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedInputStream()Ljava/io/InputStream;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getByteBuffer()Ljava/nio/ByteBuffer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBytes()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSourceURL()Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$1;": {"fields": {"cache:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/misc/URLClassPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$check:Z": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath;Ljava/lang/String;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/SharedSecrets;": {"fields": {"javaIOFileDescriptorAccess:Lsun/misc/JavaIOFileDescriptorAccess;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJavaIOFileDescriptorAccess()Lsun/misc/JavaIOFileDescriptorAccess;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setJavaIOFileDescriptorAccess(Lsun/misc/JavaIOFileDescriptorAccess;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$2;": {"fields": {"cache:[I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "res:Lsun/misc/Resource;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/misc/URLClassPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$check:Z": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath;Ljava/lang/String;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Lsun/misc/Resource;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$3;": {"fields": {"this$0:Lsun/misc/URLClassPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath;Ljava/net/URL;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/misc/URLClassPath$Loader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$FileLoader$1;": {"fields": {"this$0:Lsun/misc/URLClassPath$FileLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$file:Ljava/io/File;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath$FileLoader;Ljava/lang/String;Ljava/net/URL;Ljava/io/File;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSourceURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$FileLoader;": {"fields": {"dir:Ljava/io/File;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findResource(Ljava/lang/String;Z)Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;Z)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$JarLoader$1;": {"fields": {"this$0:Lsun/misc/URLClassPath$JarLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath$JarLoader;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$JarLoader$2;": {"fields": {"this$0:Lsun/misc/URLClassPath$JarLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$entry:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath$JarLoader;Ljava/lang/String;Ljava/net/URL;Ljava/util/jar/JarEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSourceURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$JarLoader;": {"fields": {"acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "csu:Ljava/net/URL;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "handler:Ljava/net/URLStreamHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:Lsun/misc/JarIndex;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jar:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lmap:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "metaIndex:Lsun/misc/MetaIndex;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetacc(Lsun/misc/URLClassPath$JarLoader;)Ljava/security/AccessControlContext;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetcsu(Lsun/misc/URLClassPath$JarLoader;)Ljava/net/URL;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgethandler(Lsun/misc/URLClassPath$JarLoader;)Ljava/net/URLStreamHandler;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetindex(Lsun/misc/URLClassPath$JarLoader;)Lsun/misc/JarIndex;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetjar(Lsun/misc/URLClassPath$JarLoader;)Ljava/util/jar/JarFile;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetlmap(Lsun/misc/URLClassPath$JarLoader;)Ljava/util/HashMap;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetmetaIndex(Lsun/misc/URLClassPath$JarLoader;)Lsun/misc/MetaIndex;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputindex(Lsun/misc/URLClassPath$JarLoader;Lsun/misc/JarIndex;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputjar(Lsun/misc/URLClassPath$JarLoader;Ljava/util/jar/JarFile;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetJarFile(Lsun/misc/URLClassPath$JarLoader;Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Ljava/net/URLStreamHandler;Ljava/util/HashMap;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkJar(Ljava/util/jar/JarFile;)Ljava/util/jar/JarFile;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJarFile(Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isOptimizable(Ljava/net/URL;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseClassPath(Ljava/net/URL;Ljava/lang/String;)[Ljava/net/URL;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseExtensionsDependencies()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkResource(Ljava/lang/String;ZLjava/util/jar/JarEntry;)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResource(Ljava/lang/String;Z)Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassPath()[Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getIndex()Lsun/misc/JarIndex;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getJarFile()Ljava/util/jar/JarFile;": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;Z)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;ZLjava/util/Set;)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "validIndex(Ljava/lang/String;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$JarLoader$3;": {"fields": {"this$0:Lsun/misc/URLClassPath$JarLoader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath$JarLoader;Ljava/net/URL;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/misc/URLClassPath$JarLoader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$Loader$1;": {"fields": {"this$0:Lsun/misc/URLClassPath$Loader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$name:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$uc:Ljava/net/URLConnection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$url:Ljava/net/URL;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/misc/URLClassPath$Loader;Ljava/lang/String;Ljava/net/URL;Ljava/net/URLConnection;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCodeSourceURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath$Loader;": {"fields": {"base:Ljava/net/URL;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarfile:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetbase(Lsun/misc/URLClassPath$Loader;)Ljava/net/URL;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findResource(Ljava/lang/String;Z)Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBaseURL()Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getClassPath()[Ljava/net/URL;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;Z)Lsun/misc/Resource;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/misc/URLClassPath;": {"fields": {"DEBUG:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DEBUG_LOOKUP_CACHE:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISABLE_ACC_CHECKING:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DISABLE_JAR_CHECKING:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JAVA_VERSION:Ljava/lang/String;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "USER_AGENT_JAVA_VERSION:Ljava/lang/String;": {"value": "\"UA-Java-Version\"", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupCacheEnabled:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "jarHandler:Ljava/net/URLStreamHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lmap:Ljava/util/HashMap;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "loaders:Ljava/util/ArrayList;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "lookupCacheLoader:Ljava/lang/ClassLoader;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lookupCacheURLs:[Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "path:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "urls:Ljava/util/Stack;": {"value": null, "other": [".field"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetacc(Lsun/misc/URLClassPath;)Ljava/security/AccessControlContext;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetjarHandler(Lsun/misc/URLClassPath;)Ljava/net/URLStreamHandler;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetLookupCache(Lsun/misc/URLClassPath;Ljava/lang/String;)[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetNextLoader(Lsun/misc/URLClassPath;[II)Lsun/misc/URLClassPath$Loader;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetDEBUG()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetDISABLE_JAR_CHECKING()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;Ljava/net/URLStreamHandlerFactory;Ljava/security/AccessControlContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/net/URL;Ljava/security/AccessControlContext;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/net/URL;)V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disableAllLookupCaches()V": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ensureLoaderOpened(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLoader(I)Lsun/misc/URLClassPath$Loader;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLoader(Ljava/net/URL;)Lsun/misc/URLClassPath$Loader;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLookupCache(Ljava/lang/String;)[I": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLookupCacheForClassLoader(Ljava/lang/ClassLoader;Ljava/lang/String;)[I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLookupCacheURLs(Ljava/lang/ClassLoader;)[Ljava/net/URL;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNextLoader([II)Lsun/misc/URLClassPath$Loader;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "knownToNotExist0(Ljava/lang/ClassLoader;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pathToURLs(Ljava/lang/String;)[Ljava/net/URL;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "push([Ljava/net/URL;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "validateLookupCache(ILjava/lang/String;)V": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addURL(Ljava/net/URL;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkURL(Ljava/net/URL;)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeLoaders()Ljava/util/List;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findResource(Ljava/lang/String;Z)Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findResources(Ljava/lang/String;Z)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;)Lsun/misc/Resource;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResource(Ljava/lang/String;Z)Lsun/misc/Resource;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResources(Ljava/lang/String;)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResources(Ljava/lang/String;Z)Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURLs()[Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initLookupCache(Ljava/lang/ClassLoader;)V": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "knownToNotExist(Ljava/lang/String;)Z": {"other": [".method", "declared-synchronized"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/misc/Unsafe$$ExternalSyntheticBackportWithForwarding0;": {"fields": {}, "methods": {"m(Lsun/misc/Unsafe;Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/Unsafe;": {"fields": {"INVALID_FIELD_OFFSET:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "THE_ONE:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "theUnsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getArrayBaseOffsetForComponentType(Ljava/lang/Class;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getArrayIndexScaleForComponentType(Ljava/lang/Class;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnsafe()Lsun/misc/Unsafe;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "addressSize()I": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "allocateInstance(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "allocateMemory(J)J": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "arrayBaseOffset(Ljava/lang/Class;)I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "arrayIndexScale(Ljava/lang/Class;)I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "compareAndSwapInt(Ljava/lang/Object;JII)Z": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "compareAndSwapLong(Ljava/lang/Object;JJJ)Z": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "compareAndSwapObject(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "copyMemory(JJJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "copyMemoryFromPrimitiveArray(Ljava/lang/Object;JJJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "copyMemoryToPrimitiveArray(JLjava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "freeMemory(J)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "fullFence()V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getAndAddInt(Ljava/lang/Object;JI)I": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAndAddLong(Ljava/lang/Object;JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAndSetInt(Ljava/lang/Object;JI)I": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAndSetLong(Ljava/lang/Object;JJ)J": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAndSetObject(Ljava/lang/Object;JLjava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBoolean(Ljava/lang/Object;J)Z": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getByte(J)B": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getByte(Ljava/lang/Object;J)B": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getChar(J)C": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getChar(Ljava/lang/Object;J)C": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDouble(J)D": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getDouble(Ljava/lang/Object;J)D": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getFloat(J)F": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getFloat(Ljava/lang/Object;J)F": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getInt(J)I": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getInt(Ljava/lang/Object;J)I": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getIntVolatile(Ljava/lang/Object;J)I": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getLong(J)J": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getLong(Ljava/lang/Object;J)J": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getLongVolatile(Ljava/lang/Object;J)J": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getObject(Ljava/lang/Object;J)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getObjectVolatile(Ljava/lang/Object;J)Ljava/lang/Object;": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getShort(J)S": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getShort(Ljava/lang/Object;J)S": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "loadFence()V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "objectFieldOffset(Ljava/lang/reflect/Field;)J": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "pageSize()I": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "park(ZJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putBoolean(Ljava/lang/Object;JZ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putByte(JB)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putByte(Ljava/lang/Object;JB)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putChar(JC)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putChar(Ljava/lang/Object;JC)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putDouble(JD)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putDouble(Ljava/lang/Object;JD)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putFloat(JF)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putFloat(Ljava/lang/Object;JF)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putInt(JI)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putInt(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putIntVolatile(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putLong(JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putLong(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putLongVolatile(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putObject(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "putObjectVolatile(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOrderedInt(Ljava/lang/Object;JI)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOrderedLong(Ljava/lang/Object;JJ)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOrderedObject(Ljava/lang/Object;JLjava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putShort(JS)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putShort(Ljava/lang/Object;JS)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "setMemory(JJB)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "storeFence()V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "unpark(Ljava/lang/Object;)V": {"other": [".method", "public", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/misc/VM;": {"fields": {"JVMTI_THREAD_STATE_ALIVE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER:I": {"value": "0x400", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_RUNNABLE:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_TERMINATED:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_WAITING_INDEFINITELY:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JVMTI_THREAD_STATE_WAITING_WITH_TIMEOUT:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_GREEN:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_RED:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STATE_YELLOW:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowArraySyntax:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "booted:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultAllowArraySyntax:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "directMemory:J": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalRefCount:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageAlignDirectMemory:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "peakFinalRefCount:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "savedProps:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suspended:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addFinalRefCount(I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowArraySyntax()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allowThreadSuspension(Ljava/lang/ThreadGroup;Z)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asChange(II)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asChange_otherthread(II)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitBooted()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "booted()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFinalRefCount()I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPeakFinalRefCount()I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSavedProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getState()I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeOSEnvironment()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isBooted()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirectMemoryPageAligned()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxDirectMemory()J": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "saveAndRemoveProperties(Ljava/util/Properties;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suspendThreads()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadsSuspended()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toThreadState(I)Ljava/lang/Thread$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsuspendSomeThreads()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsuspendThreads()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/misc/Version;": {"fields": {"java_profile_name:Ljava/lang/String;": {"value": "\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "java_runtime_name:Ljava/lang/String;": {"value": "\"Android Runtime\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "java_runtime_version:Ljava/lang/String;": {"value": "\"0.9\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "java_version:Ljava/lang/String;": {"value": "\"0\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_build_number:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_major_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_micro_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_minor_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_special_version:Ljava/lang/String;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdk_update_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmVersionInfoAvailable:Z": {"value": "false", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_build_number:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_major_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_micro_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_minor_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_special_version:Ljava/lang/String;": {"value": "null", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvm_update_version:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "launcher_name:Ljava/lang/String;": {"value": "\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "versionsInitialized:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJdkSpecialVersion()Ljava/lang/String;": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJdkVersionInfo()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJvmSpecialVersion()Ljava/lang/String;": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJvmVersionInfo()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initSystemProperties()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initVersions()V": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkBuildNumber()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkMajorVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkMicroVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkMinorVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkSpecialVersion()Ljava/lang/String;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jdkUpdateVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmBuildNumber()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmMajorVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmMicroVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmMinorVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmSpecialVersion()Ljava/lang/String;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jvmUpdateVersion()I": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "print()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "print(Ljava/io/PrintStream;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "println()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ApplicationProxy;": {"fields": {}, "methods": {"(Ljava/net/Proxy;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/net/Proxy;)Lsun/net/ApplicationProxy;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ConnectionResetException;": {"fields": {"serialVersionUID:J": {"value": "-0x69ee863799d64ea4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/DefaultProgressMeteringPolicy;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProgressUpdateThreshold()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldMeterInput(Ljava/net/URL;Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ExtendedOptionsImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkGetOptionPermission(Ljava/net/SocketOption;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkSetOptionPermission(Ljava/net/SocketOption;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkValueType(Ljava/lang/Object;Ljava/lang/Class;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flowSupported()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setFlowOption(Ljava/io/FileDescriptor;Ljdk/net/SocketFlow;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetHooks;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beforeTcpBind(Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beforeTcpConnect(Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetProperties$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetProperties;": {"fields": {"props:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smloadDefaultProperties()V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBoolean(Ljava/lang/String;)Ljava/lang/Boolean;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInteger(Ljava/lang/String;I)Ljava/lang/Integer;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadDefaultProperties()V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetworkClient$1;": {"fields": {"val$encs:[Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$vals:[I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([I[Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetworkClient$3;": {"fields": {"this$0:Lsun/net/NetworkClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/NetworkClient;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetworkClient$2;": {"fields": {"this$0:Lsun/net/NetworkClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/NetworkClient;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/NetworkClient;": {"fields": {"DEFAULT_CONNECT_TIMEOUT:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_READ_TIMEOUT:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultConnectTimeout:I": {"value": null, "other": [".field", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultSoTimeout:I": {"value": null, "other": [".field", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoding:Ljava/lang/String;": {"value": null, "other": [".field", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectTimeout:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "proxy:Ljava/net/Proxy;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readTimeout:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverInput:Ljava/io/InputStream;": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverOutput:Ljava/io/PrintStream;": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverSocket:Ljava/net/Socket;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isASCIISuperset(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeServer()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createSocket()Ljava/net/Socket;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doConnect(Ljava/lang/String;I)Ljava/net/Socket;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getConnectTimeout()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReadTimeout()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openServer(Ljava/lang/String;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverIsOpen()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReadTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ProgressEvent;": {"fields": {"contentType:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expected:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "method:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progress:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ProgressSource;Ljava/net/URL;Ljava/lang/String;Ljava/lang/String;Lsun/net/ProgressSource$State;JJ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExpected()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMethod()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProgress()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getState()Lsun/net/ProgressSource$State;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ProgressListener;": {"fields": {}, "methods": {"progressFinish(Lsun/net/ProgressEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progressStart(Lsun/net/ProgressEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progressUpdate(Lsun/net/ProgressEvent;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ProgressMonitor;": {"fields": {"meteringPolicy:Lsun/net/ProgressMeteringPolicy;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pm:Lsun/net/ProgressMonitor;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progressListenerList:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progressSourceList:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefault()Lsun/net/ProgressMonitor;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDefault(Lsun/net/ProgressMonitor;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMeteringPolicy(Lsun/net/ProgressMeteringPolicy;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addProgressListener(Lsun/net/ProgressListener;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProgressSources()Ljava/util/ArrayList;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProgressUpdateThreshold()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "registerSource(Lsun/net/ProgressSource;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeProgressListener(Lsun/net/ProgressListener;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldMeterInput(Ljava/net/URL;Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unregisterSource(Lsun/net/ProgressSource;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateProgress(Lsun/net/ProgressSource;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ProgressSource$State;": {"fields": {"$VALUES:[Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECTED:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DELETE:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEW:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UPDATE:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/net/ProgressSource$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/net/ProgressSource$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ProgressMeteringPolicy;": {"fields": {}, "methods": {"getProgressUpdateThreshold()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldMeterInput(Ljava/net/URL;Ljava/lang/String;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ProgressSource;": {"fields": {"connected:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contentType:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expected:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastProgress:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "method:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progress:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "progressMonitor:Lsun/net/ProgressMonitor;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:Lsun/net/ProgressSource$State;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threshold:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "url:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Ljava/lang/String;J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beginTracking()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connected()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finishTracking()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExpected()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMethod()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProgress()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getState()Lsun/net/ProgressSource$State;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURL()Ljava/net/URL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setContentType(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateProgress(JJ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ResourceManager;": {"fields": {"DEFAULT_MAX_SOCKETS:I": {"value": "0x19", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxSockets:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "numSockets:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "afterUdpClose()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beforeUdpCreate()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/SocksProxy;": {"fields": {"version:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/SocketAddress;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/net/SocketAddress;I)Lsun/net/SocksProxy;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "protocolVersion()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/TelnetInputStream;": {"fields": {"binaryMode:Z": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "seenCR:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stickyCRLF:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([B)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setStickyCRLF(Z)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/TelnetOutputStream;": {"fields": {"binaryMode:Z": {"value": null, "other": [".field", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "seenCR:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stickyCRLF:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/OutputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setStickyCRLF(Z)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([BII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/TelnetProtocolException;": {"fields": {"serialVersionUID:J": {"value": "0x76167df7586dbb2fL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ext/ExtendedSocketOptions$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ext/ExtendedSocketOptions;": {"fields": {"SOCK_DGRAM:S": {"value": "0x2s", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCK_STREAM:S": {"value": "0x1s", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instance:Lsun/net/ext/ExtendedSocketOptions;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Set;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance()Lsun/net/ext/ExtendedSocketOptions;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$options0$0(Ljava/net/SocketOption;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$options0$1(Ljava/net/SocketOption;)Z": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options(S)Ljava/util/Set;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options0(S)Ljava/util/Set;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Lsun/net/ext/ExtendedSocketOptions;)V": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOptionSupported(Ljava/net/SocketOption;)Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ext/ExtendedSocketOptions$NoExtendedSocketOptions;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/io/FileDescriptor;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ext/ExtendedSocketOptions$$ExternalSyntheticLambda1;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "test(Ljava/lang/Object;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ftp/FtpClient$TransferType;": {"fields": {"$VALUES:[Lsun/net/ftp/FtpClient$TransferType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ASCII:Lsun/net/ftp/FtpClient$TransferType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BINARY:Lsun/net/ftp/FtpClient$TransferType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EBCDIC:Lsun/net/ftp/FtpClient$TransferType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/net/ftp/FtpClient$TransferType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/net/ftp/FtpClient$TransferType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpDirEntry$Permission;": {"fields": {"$VALUES:[Lsun/net/ftp/FtpDirEntry$Permission;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GROUP:Lsun/net/ftp/FtpDirEntry$Permission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OTHERS:Lsun/net/ftp/FtpDirEntry$Permission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "USER:Lsun/net/ftp/FtpDirEntry$Permission;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry$Permission;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/net/ftp/FtpDirEntry$Permission;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpClientProvider;": {"fields": {"lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider:Lsun/net/ftp/FtpClientProvider;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetprovider()Lsun/net/ftp/FtpClientProvider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputprovider(Lsun/net/ftp/FtpClientProvider;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadProviderAsService()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smloadProviderFromProperty()Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadProviderAsService()Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadProviderFromProperty()Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider()Lsun/net/ftp/FtpClientProvider;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createFtpClient()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpClient;": {"fields": {"FTP_PORT:I": {"value": "0x15", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "create()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/net/InetSocketAddress;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultPort()I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "abort()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocate(J)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendFile(Ljava/lang/String;Ljava/io/InputStream;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeToParentDirectory()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completePending()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/SocketAddress;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/SocketAddress;I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteFile(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enablePassiveMode(Z)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endSecureSession()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getConnectTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFeatures()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFile(Ljava/lang/String;Ljava/io/OutputStream;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHelp(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastFileName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastModified(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastReplyCode()Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastResponseString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastTransferSize()J": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProxy()Ljava/net/Proxy;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReadTimeout()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServerAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSize(Ljava/lang/String;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getStatus(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSystem()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWelcomeMsg()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWorkingDirectory()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConnected()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggedIn()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPassiveModeEnabled()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listFiles(Ljava/lang/String;)Ljava/util/Iterator;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "login(Ljava/lang/String;[C)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "login(Ljava/lang/String;[CLjava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameList(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "noop()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFile(Ljava/lang/String;Ljava/io/InputStream;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFile(Ljava/lang/String;Ljava/io/InputStream;Z)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFileStream(Ljava/lang/String;)Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFileStream(Ljava/lang/String;Z)Ljava/io/OutputStream;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reInit()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rename(Ljava/lang/String;Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAsciiType()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setBinaryType()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectTimeout(I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDirParser(Lsun/net/ftp/FtpDirParser;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setProxy(Ljava/net/Proxy;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReadTimeout(I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setRestartOffset(J)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setType(Lsun/net/ftp/FtpClient$TransferType;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "siteCmd(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startSecureSession()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "structureMount(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useKerberos()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpClientProvider$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ftp/FtpDirEntry$Type;": {"fields": {"$VALUES:[Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CDIR:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIR:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LINK:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PDIR:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry$Type;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/net/ftp/FtpDirEntry$Type;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpProtocolException;": {"fields": {"serialVersionUID:J": {"value": "0x52f6656c15bdca1eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "code:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/net/ftp/FtpReplyCode;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReplyCode()Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpLoginException;": {"fields": {"serialVersionUID:J": {"value": "0x1ec87ef4131fd120L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpDirParser;": {"fields": {}, "methods": {"parseLine(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/FtpDirEntry;": {"fields": {"created:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "facts:Ljava/util/HashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "group:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastModified:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permissions:[[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Lsun/net/ftp/FtpDirEntry$Type;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "user:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addFact(Ljava/lang/String;Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canExexcute(Lsun/net/ftp/FtpDirEntry$Permission;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canRead(Lsun/net/ftp/FtpDirEntry$Permission;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canWrite(Lsun/net/ftp/FtpDirEntry$Permission;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCreated()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFact(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGroup()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastModified()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSize()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()Lsun/net/ftp/FtpDirEntry$Type;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUser()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCreated(Ljava/util/Date;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setGroup(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLastModified(Ljava/util/Date;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPermissions([[Z)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSize(J)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setType(Lsun/net/ftp/FtpDirEntry$Type;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setUser(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ftp/FtpReplyCode;": {"fields": {"$VALUES:[Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ACTION_ABORTED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BAD_SEQUENCE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CANT_OPEN_DATA_CONNECTION:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CLOSING_DATA_CONNECTION:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMMAND_OK:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COMMAND_UNRECOGNIZED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECTION_CLOSED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DATA_CONNECTION_ALREADY_OPEN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DATA_CONNECTION_OPEN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIRECTORY_STATUS:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENTERING_EXT_PASSIVE_MODE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENTERING_PASSIVE_MODE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXCEEDED_STORAGE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FAILED_SECURITY_CHECK:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_ACTION_NOT_TAKEN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_ACTION_OK:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_ACTION_PENDING:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_NAME_NOT_ALLOWED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_STATUS:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_STATUS_OK:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_UNAVAILABLE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HELP_MESSAGE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INSUFFICIENT_STORAGE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INVALID_PARAMETER:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOGGED_IN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_SYSTEM_TYPE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_ACCOUNT:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_ACCOUNT_FOR_STORING:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_ADAT:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_MORE_ADAT:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_PASSWORD:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_SECURITY_RESOURCE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_IMPLEMENTED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_IMPLEMENTED_FOR_PARAMETER:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_LOGGED_IN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PAGE_TYPE_UNKNOWN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PATHNAME_CREATED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROTECTED_REPLY:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROT_LEVEL_DENIED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROT_LEVEL_NOT_SUPPORTED_BY_SECURITY:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REQUEST_DENIED:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RESTART_MARKER:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECURELY_LOGGED_IN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECURITY_EXCHANGE_COMPLETE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECURITY_EXCHANGE_OK:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERVICE_CLOSING:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERVICE_NOT_AVAILABLE:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERVICE_READY:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERVICE_READY_IN:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SYSTEM_STATUS:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNKNOWN_ERROR:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSUPPORTED_PROT_LEVEL:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;II)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "find(I)Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAuthentication()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConnection()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFileSystem()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isInformation()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPermanentNegative()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPositiveCompletion()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPositiveIntermediate()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPositivePreliminary()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isProtectedReply()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSyntax()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTransientNegative()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUnspecified()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/DefaultFtpClientProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createFtpClient()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$1;": {"fields": {"val$encs:[Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$vals:[I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([I[Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ftp/impl/FtpClient$2;": {"fields": {"this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$4;": {"fields": {"this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$3;": {"fields": {"this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$DefaultParser-IA;": {"fields": {}, "methods": {}}, "Lsun/net/ftp/impl/FtpClient$MLSxParser;": {"fields": {"df:Ljava/text/SimpleDateFormat;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/net/ftp/impl/FtpClient;Lsun/net/ftp/impl/FtpClient$MLSxParser-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLine(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$MLSxParser-IA;": {"fields": {}, "methods": {}}, "Lsun/net/ftp/impl/FtpClient$DefaultParser;": {"fields": {"this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/net/ftp/impl/FtpClient;Lsun/net/ftp/impl/FtpClient$DefaultParser-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLine(Ljava/lang/String;)Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/ftp/impl/FtpClient$FtpFileIterator;": {"fields": {"eof:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fparser:Lsun/net/ftp/FtpDirParser;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:Ljava/io/BufferedReader;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextFile:Lsun/net/ftp/FtpDirEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/ftp/impl/FtpClient;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/ftp/impl/FtpClient;Lsun/net/ftp/FtpDirParser;Ljava/io/BufferedReader;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readNext()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Lsun/net/ftp/FtpDirEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/ftp/impl/FtpClient;": {"fields": {"MDTMformats:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dateFormats:[Ljava/text/SimpleDateFormat;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultConnectTimeout:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultSoTimeout:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoding:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epsvPat:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "linkp:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "logger:Lsun/util/logging/PlatformLogger;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pasvPat:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "patStrings:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "patternGroups:[[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "patterns:[Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transPat:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "df:Ljava/text/DateFormat;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastFileName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastReplyCode:Lsun/net/ftp/FtpReplyCode;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastTransSize:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loggedIn:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mlsxParser:Lsun/net/ftp/FtpDirParser;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oldSocket:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:Ljava/io/PrintStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parser:Lsun/net/ftp/FtpDirParser;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "passiveMode:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "proxy:Ljava/net/Proxy;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replyPending:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "restartOffset:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "server:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverAddr:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverResponse:Ljava/util/Vector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sslFact:Ljavax/net/ssl/SSLSocketFactory;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Lsun/net/ftp/FtpClient$TransferType;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useCrypto:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "welcomeMsg:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdf(Lsun/net/ftp/impl/FtpClient;)Ljava/text/DateFormat;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetproxy(Lsun/net/ftp/impl/FtpClient;)Ljava/net/Proxy;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetserver(Lsun/net/ftp/impl/FtpClient;)Ljava/net/Socket;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetlinkp()Ljava/util/regex/Pattern;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetpatternGroups()[[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetpatterns()[Ljava/util/regex/Pattern;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Lsun/net/ftp/FtpClient;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createInputStream(Ljava/io/InputStream;)Ljava/io/InputStream;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createOutputStream(Ljava/io/OutputStream;)Ljava/io/OutputStream;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disconnect()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doConnect(Ljava/net/InetSocketAddress;I)Ljava/net/Socket;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponseString()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponseStrings()Ljava/util/Vector;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSecurityData()[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTransferName()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTransferSize()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isASCIISuperset(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issueCommand(Ljava/lang/String;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issueCommandCheck(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openDataConnection(Ljava/lang/String;)Ljava/net/Socket;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openPassiveDataConnection(Ljava/lang/String;)Ljava/net/Socket;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readReply()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readServerResponse()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendSecurityData([B)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendServer(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryConnect(Ljava/net/InetSocketAddress;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryLogin(Ljava/lang/String;[C)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "abort()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocate(J)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendFile(Ljava/lang/String;Ljava/io/InputStream;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeToParentDirectory()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "completePending()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/SocketAddress;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/SocketAddress;I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteFile(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enablePassiveMode(Z)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endSecureSession()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getConnectTimeout()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFeatures()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFile(Ljava/lang/String;Ljava/io/OutputStream;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStream(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHelp(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastFileName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastModified(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastReplyCode()Lsun/net/ftp/FtpReplyCode;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastResponseString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLastTransferSize()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProxy()Ljava/net/Proxy;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReadTimeout()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServerAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSize(Ljava/lang/String;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getStatus(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSystem()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWelcomeMsg()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getWorkingDirectory()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggedIn()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPassiveModeEnabled()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "list(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listFiles(Ljava/lang/String;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "login(Ljava/lang/String;[C)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "login(Ljava/lang/String;[CLjava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameList(Ljava/lang/String;)Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "noop()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFile(Ljava/lang/String;Ljava/io/InputStream;Z)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFileStream(Ljava/lang/String;Z)Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reInit()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeDirectory(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rename(Ljava/lang/String;Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectTimeout(I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDirParser(Lsun/net/ftp/FtpDirParser;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setProxy(Ljava/net/Proxy;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReadTimeout(I)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setRestartOffset(J)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setType(Lsun/net/ftp/FtpClient$TransferType;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "siteCmd(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startSecureSession()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "structureMount(Ljava/lang/String;)Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useKerberos()Lsun/net/ftp/FtpClient;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/spi/DefaultProxySelector$1;": {"fields": {"this$0:Lsun/net/spi/DefaultProxySelector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$nprop:Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$proto:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$urlhost:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/spi/DefaultProxySelector;Ljava/lang/String;Lsun/net/spi/DefaultProxySelector$NonProxyInfo;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/Proxy;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"fields": {"defStringVal:Ljava/lang/String;": {"value": "\"localhost|127.*|[::1]|0.0.0.0|[::0]\"", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ftpNonProxyInfo:Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "httpNonProxyInfo:Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "httpsNonProxyInfo:Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socksNonProxyInfo:Lsun/net/spi/DefaultProxySelector$NonProxyInfo;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultVal:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hostsSource:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "property:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/util/regex/Pattern;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/spi/DefaultProxySelector;": {"fields": {"SOCKS_PROXY_VERSION:Ljava/lang/String;": {"value": "\"socksProxyVersion\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasSystemProxies:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "props:[[Ljava/lang/String;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mdefaultPort(Lsun/net/spi/DefaultProxySelector;Ljava/lang/String;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultPort(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disjunctToRegex(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldNotUseProxyFor(Ljava/util/regex/Pattern;Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toPattern(Ljava/lang/String;)Ljava/util/regex/Pattern;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectFailed(Ljava/net/URI;Ljava/net/SocketAddress;Ljava/io/IOException;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(Ljava/net/URI;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/spi/nameservice/NameService;": {"fields": {}, "methods": {"getHostByAddr([B)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupAllHostAddr(Ljava/lang/String;I)[Ljava/net/InetAddress;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/util/IPAddressUtil;": {"fields": {"INADDR16SZ:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INADDR4SZ:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INT16SZ:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convertFromIPv4MappedAddress([B)[B": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv4LiteralAddress(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "isIPv4MappedAddress([B)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv6LiteralAddress(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "textToNumericFormatV4(Ljava/lang/String;)[B": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "textToNumericFormatV6(Ljava/lang/String;)[B": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/util/URLUtil;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "urlNoFragString(Ljava/net/URL;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/MessageHeader$HeaderIterator;": {"fields": {"haveNext:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/www/MessageHeader;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/MessageHeader;Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/MeteredStream;": {"fields": {"closed:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expected:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "markLimit:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "markedCount:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pi:Lsun/net/ProgressSource;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Lsun/net/ProgressSource;J)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isMarked()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "justRead(J)V": {"other": [".method", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mark(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "markSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/MessageHeader;": {"fields": {"keys:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nkeys:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values:[Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetkeys(Lsun/net/www/MessageHeader;)[Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetnkeys(Lsun/net/www/MessageHeader;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetvalues(Lsun/net/www/MessageHeader;)[Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "canonicalID(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "grow()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "filterAndAddHeaders([Ljava/lang/String;Ljava/util/Map;)Ljava/util/Map;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterNTLMResponses(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findNextValue(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findValue(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getHeaderNamesInList()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHeaders()Ljava/util/Map;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHeaders([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKey(Ljava/lang/String;)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKey(I)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue(I)Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeHeader(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "multiValueIterator(Ljava/lang/String;)Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseHeader(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prepend(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "print(Ljava/io/PrintStream;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "remove(Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "setIfNotSet(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/ParseUtil;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_DASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_DIGIT:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ESCAPED:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_HEX:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_LOWALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_REG_NAME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_RESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_SERVER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_UPALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_URIC:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_USERINFO:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_ALPHA:J": {"value": "0x0L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_DASH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_DIGIT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_ESCAPED:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_HEX:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_LOWALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_REG_NAME:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_RESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_SERVER:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_UPALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_URIC:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_USERINFO:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodedInPath:Ljava/util/BitSet;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hexDigits:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendAuthority(Ljava/lang/StringBuffer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendEncoded(Ljava/lang/StringBuffer;C)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendEscape(Ljava/lang/StringBuffer;B)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendFragment(Ljava/lang/StringBuffer;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "appendSchemeSpecificPart(Ljava/lang/StringBuffer;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPath(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createURI(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URI;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decode(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodePath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodePath(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "escape([CCI)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileToEncodedURL(Ljava/io/File;)Ljava/net/URL;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "highMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "highMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEscaped(Ljava/lang/String;I)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "match(CJJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "quote(Ljava/lang/String;JJ)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toURI(Ljava/net/URL;)Ljava/net/URI;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unescape(Ljava/lang/String;I)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonizeString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/URLConnection;": {"fields": {"proxiedHosts:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contentLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contentType:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "properties:Lsun/net/www/MessageHeader;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "isProxiedHost(Ljava/lang/String;)Z": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setProxiedHost(Ljava/lang/String;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "canCache()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldKey(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperties()Lsun/net/www/MessageHeader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRequestProperties()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setContentLength(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setContentType(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setProperties(Lsun/net/www/MessageHeader;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/file/FileURLConnection;": {"fields": {"CONTENT_LENGTH:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONTENT_TYPE:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LAST_MODIFIED:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TEXT_PLAIN:Ljava/lang/String;": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contentType:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exists:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file:Ljava/io/File;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filename:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "files:Ljava/util/List;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializedHeaders:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "is:Ljava/io/InputStream;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirectory:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastModified:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permission:Ljava/security/Permission;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Ljava/io/File;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeHeaders()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentLengthLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderFieldKey(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLastModified()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProperties()Lsun/net/www/MessageHeader;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/protocol/file/Handler;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHost(Ljava/net/URL;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createFileURLConnection(Ljava/net/URL;Ljava/io/File;)Ljava/net/URLConnection;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hostsEqual(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;)Ljava/net/URLConnection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;Ljava/net/Proxy;)Ljava/net/URLConnection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseURL(Ljava/net/URL;Ljava/lang/String;II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/ftp/FtpURLConnection$1;": {"fields": {"this$0:Lsun/net/www/protocol/ftp/FtpURLConnection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/protocol/ftp/FtpURLConnection;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/ProxySelector;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/protocol/ftp/FtpURLConnection$FtpInputStream;": {"fields": {"ftp:Lsun/net/ftp/FtpClient;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/www/protocol/ftp/FtpURLConnection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/protocol/ftp/FtpURLConnection;Lsun/net/ftp/FtpClient;Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/ftp/FtpURLConnection$FtpOutputStream;": {"fields": {"ftp:Lsun/net/ftp/FtpClient;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/www/protocol/ftp/FtpURLConnection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/protocol/ftp/FtpURLConnection;Lsun/net/ftp/FtpClient;Ljava/io/OutputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/ftp/FtpURLConnection;": {"fields": {"ASCII:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BIN:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIR:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NONE:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filename:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ftp:Lsun/net/ftp/FtpClient;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullpath:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "host:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instProxy:Ljava/net/Proxy;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "is:Ljava/io/InputStream;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "os:Ljava/io/OutputStream;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "password:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pathname:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permission:Ljava/security/Permission;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "port:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readTimeout:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "user:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/URL;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Ljava/net/Proxy;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cd(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decodePath(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeouts()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getConnectTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReadTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "guessContentTypeFromFilename(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnectTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/ftp/Handler;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultPort()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;)Ljava/net/URLConnection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;Ljava/net/Proxy;)Ljava/net/URLConnection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/jar/Handler;": {"fields": {"separator:Ljava/lang/String;": {"value": "\"!/\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOfBangSlash(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseAbsoluteSpec(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseContextSpec(Ljava/net/URL;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode(Ljava/net/URL;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openConnection(Ljava/net/URL;)Ljava/net/URLConnection;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseURL(Ljava/net/URL;Ljava/lang/String;II)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sameFile(Ljava/net/URL;Ljava/net/URL;)Z": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/jar/JarFileFactory;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileCache:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "instance:Lsun/net/www/protocol/jar/JarFileFactory;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "urlCache:Ljava/util/HashMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCachedJarFile(Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance()Lsun/net/www/protocol/jar/JarFileFactory;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPermission(Ljava/util/jar/JarFile;)Ljava/security/Permission;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(Ljava/util/jar/JarFile;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/net/URL;Z)Ljava/util/jar/JarFile;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getConnection(Ljava/util/jar/JarFile;)Ljava/net/URLConnection;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/protocol/jar/JarURLConnection$JarURLInputStream;": {"fields": {"this$0:Lsun/net/www/protocol/jar/JarURLConnection;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/protocol/jar/JarURLConnection;Ljava/io/InputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/jar/JarURLConnection;": {"fields": {"debug:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "factory:Lsun/net/www/protocol/jar/JarFileFactory;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contentType:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entryName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarEntry:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarFile:Ljava/util/jar/JarFile;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarFileURL:Ljava/net/URL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarFileURLConnection:Ljava/net/URLConnection;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permission:Ljava/security/Permission;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetjarFile(Lsun/net/www/protocol/jar/JarURLConnection;)Ljava/util/jar/JarFile;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Lsun/net/www/protocol/jar/Handler;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAllowUserInteraction()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContent()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentLength()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentLengthLong()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContentType()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDefaultUseCaches()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHeaderField(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarEntry()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getJarFile()Ljava/util/jar/JarFile;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPermission()Ljava/security/Permission;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperties()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRequestProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUseCaches()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAllowUserInteraction(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setDefaultUseCaches(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIfModifiedSince(J)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setRequestProperty(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setUseCaches(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;": {"fields": {}, "methods": {"close(Ljava/util/jar/JarFile;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/protocol/jar/URLJarFile$1;": {"fields": {"val$closeController:Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$in:Ljava/io/InputStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/jar/JarFile;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/net/www/protocol/jar/URLJarFile$URLJarFileEntry;": {"fields": {"je:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/net/www/protocol/jar/URLJarFile;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/net/www/protocol/jar/URLJarFile;Ljava/util/jar/JarEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttributes()Ljava/util/jar/Attributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificates()[Ljava/security/cert/Certificate;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCodeSigners()[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/net/www/protocol/jar/URLJarFile;": {"fields": {"BUF_SIZE:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeController:Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "superAttr:Ljava/util/jar/Attributes;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "superEntries:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "superMan:Ljava/util/jar/Manifest;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetsuperEntries(Lsun/net/www/protocol/jar/URLJarFile;)Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$misSuperMan(Lsun/net/www/protocol/jar/URLJarFile;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/File;Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URL;Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJarFile(Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJarFile(Ljava/net/URL;Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;)Ljava/util/jar/JarFile;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFileURL(Ljava/net/URL;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSuperMan()Z": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieve(Ljava/net/URL;)Ljava/util/jar/JarFile;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieve(Ljava/net/URL;Lsun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController;)Ljava/util/jar/JarFile;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEntry(Ljava/lang/String;)Ljava/util/zip/ZipEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getManifest()Ljava/util/jar/Manifest;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ByteBuffered;": {"fields": {}, "methods": {"getByteBuffer()Ljava/nio/ByteBuffer;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AbstractPollArrayWrapper;": {"fields": {"EVENT_OFFSET:S": {"value": "0x4s", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FD_OFFSET:S": {"value": "0x0s", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REVENT_OFFSET:S": {"value": "0x6s", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZE_POLLFD:S": {"value": "0x8s", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollArray:Lsun/nio/ch/AllocatedNativeObject;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollArrayAddress:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "totalChannels:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDescriptor(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEventOps(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReventOps(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDescriptor(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putEventOps(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putReventOps(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AbstractPollSelectorImpl;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INIT_CAP:I": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channelArray:[Lsun/nio/ch/SelectionKeyImpl;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channelOffset:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollWrapper:Lsun/nio/ch/PollArrayWrapper;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "totalChannels:I": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSelect(J)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseInterrupt()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implDereg(Lsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRegister(Lsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putEventOps(Lsun/nio/ch/SelectionKeyImpl;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateSelectedKeys()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wakeup()Ljava/nio/channels/Selector;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/AllocatedNativeObject;": {"fields": {}, "methods": {"(IZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "free()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl$1;": {"fields": {"this$0:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$task:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$thisGroup:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;Lsun/nio/ch/AsynchronousChannelGroupImpl;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl$2;": {"fields": {"this$0:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$task:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl$3;": {"fields": {"this$0:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl$4$1;": {"fields": {"this$1:Lsun/nio/ch/AsynchronousChannelGroupImpl$4;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl$4;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl$4;": {"fields": {"this$0:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$acc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$delegate:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;Ljava/lang/Runnable;Ljava/security/AccessControlContext;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"fields": {"internalThreadCount:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pool:Lsun/nio/ch/ThreadPool;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdown:Ljava/util/concurrent/atomic/AtomicBoolean;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdownNowLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "taskQueue:Ljava/util/Queue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "terminateInitiated:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadCount:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeoutExecutor:Ljava/util/concurrent/ScheduledThreadPoolExecutor;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetpool(Lsun/nio/ch/AsynchronousChannelGroupImpl;)Lsun/nio/ch/ThreadPool;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettimeoutExecutor(Lsun/nio/ch/AsynchronousChannelGroupImpl;)Ljava/util/concurrent/ScheduledThreadPoolExecutor;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/AsynchronousChannelProvider;Lsun/nio/ch/ThreadPool;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bindToGroup(Ljava/lang/Runnable;)Ljava/lang/Runnable;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdownExecutors()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startInternalThread(Ljava/lang/Runnable;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attachForeignChannel(Ljava/nio/channels/Channel;Ljava/io/FileDescriptor;)Ljava/lang/Object;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitTermination(JLjava/util/concurrent/TimeUnit;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeAllChannels()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "detachForeignChannel(Ljava/lang/Object;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "detachFromThreadPool()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "execute(Ljava/lang/Runnable;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "executeOnHandlerTask(Ljava/lang/Runnable;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executeOnPooledThread(Ljava/lang/Runnable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor()Ljava/util/concurrent/ExecutorService;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fixedThreadCount()I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFixedThreadPool()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isShutdown()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isTerminated()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "offerTask(Ljava/lang/Runnable;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollTask()Ljava/lang/Runnable;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "schedule(Ljava/lang/Runnable;JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Future;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdown()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownHandlerTasks()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdownNow()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startThreads(Ljava/lang/Runnable;)V": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadCount()I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadExit(Ljava/lang/Runnable;Z)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousFileChannelImpl;": {"fields": {"closeLock:Ljava/util/concurrent/locks/ReadWriteLock;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/ExecutorService;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdObj:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileLockTable:Lsun/nio/ch/FileLockTable;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reading:Z": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writing:Z": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/FileDescriptor;ZZLjava/util/concurrent/ExecutorService;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addToFileLockTable(JJZ)Lsun/nio/ch/FileLockImpl;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin()V": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end(Z)V": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureFileLockTableInitialized()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor()Ljava/util/concurrent/ExecutorService;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implLock(JJZLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRead(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRelease(Lsun/nio/ch/FileLockImpl;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implWrite(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidateAllLocks()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZ)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;J)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release(Lsun/nio/ch/FileLockImpl;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeFromFileLockTable(Lsun/nio/ch/FileLockImpl;)V": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/nio/ByteBuffer;J)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/AsynchronousServerSocketChannelImpl$DefaultOptionsHolder;": {"fields": {"defaultOptions:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultOptions()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousServerSocketChannelImpl;": {"fields": {"acceptKilled:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeLock:Ljava/util/concurrent/locks/ReadWriteLock;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReuseAddress:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept()Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "accept(Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "begin()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;I)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "end()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implAccept(Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAcceptKilled()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onCancel(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/AsynchronousSocketChannelImpl$DefaultOptionsHolder;": {"fields": {"defaultOptions:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultOptions()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/AsynchronousSocketChannelImpl;": {"fields": {"ST_CONNECTED:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_PENDING:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNCONNECTED:I": {"value": "0x0", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeLock:Ljava/util/concurrent/locks/ReadWriteLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReuseAddress:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readKilled:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readShutdown:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reading:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remoteAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "protected", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeKilled:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeShutdown:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writing:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AsynchronousChannelGroupImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/AsynchronousChannelGroupImpl;Ljava/io/FileDescriptor;Ljava/net/InetSocketAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "begin()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "enableReading()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enableReading(Z)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enableWriting()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enableWriting(Z)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "end()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implClose()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implConnect(Ljava/net/SocketAddress;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRead(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implWrite(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "killConnect()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "killReading()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "killWriting()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)Ljava/util/concurrent/Future;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;IIJLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Cancellable;": {"fields": {}, "methods": {"onCancel(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/ChannelInputStream;": {"fields": {"b1:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bs:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ch:Ljava/nio/channels/ReadableByteChannel;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/ReadableByteChannel;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/ByteBuffer;Z)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read([BII)I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "skip(J)J": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/CompletedFuture;": {"fields": {"exc:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withFailure(Ljava/lang/Throwable;)Lsun/nio/ch/CompletedFuture;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withResult(Ljava/lang/Object;)Lsun/nio/ch/CompletedFuture;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "withResult(Ljava/lang/Object;Ljava/lang/Throwable;)Lsun/nio/ch/CompletedFuture;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCancelled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/DatagramChannelImpl$DefaultOptionsHolder;": {"fields": {"defaultOptions:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultOptions()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/DatagramChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_CONNECTED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLED:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNCONNECTED:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedSenderInetAddress:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedSenderPort:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "family:Ljava/net/ProtocolFamily;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReuseAddress:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readerThread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "registry:Lsun/nio/ch/MembershipRegistry;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remoteAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reuseAddressEmulated:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sender:Ljava/net/SocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket:Ljava/net/DatagramSocket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writerThread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/net/ProtocolFamily;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disconnect0(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "innerJoin(Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "receive(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "receive0(Ljava/io/FileDescriptor;JIZ)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "receiveIntoNativeBuffer(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "send(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;Ljava/net/InetSocketAddress;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "send0(ZLjava/io/FileDescriptor;JILjava/net/InetAddress;I)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendFromNativeBuffer(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;Ljava/net/InetSocketAddress;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "block(Lsun/nio/ch/MembershipKeyImpl;Ljava/net/InetAddress;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/SocketAddress;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disconnect()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drop(Lsun/nio/ch/MembershipKeyImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpenAndUnconnected()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseSelectableChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "kill()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(IJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/nio/ByteBuffer;)Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "send(Ljava/nio/ByteBuffer;Ljava/net/SocketAddress;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/DatagramSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateReadyOps(IILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unblock(Lsun/nio/ch/MembershipKeyImpl;Ljava/net/InetAddress;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/DatagramDispatcher;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read0(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv0(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write0(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev0(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preClose(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/DatagramSocketAdaptor$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(ILjava/net/InetAddress;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTTL()B": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTimeToLive()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "join(Ljava/net/InetAddress;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "joinGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leave(Ljava/net/InetAddress;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "leaveGroup(Ljava/net/SocketAddress;Ljava/net/NetworkInterface;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek(Ljava/net/InetAddress;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peekData(Ljava/net/DatagramPacket;)I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTTL(B)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimeToLive(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/DatagramSocketAdaptor;": {"fields": {"dummyDatagramSocket:Ljava/net/DatagramSocketImpl;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dc:Lsun/nio/ch/DatagramChannelImpl;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/DatagramChannelImpl;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectInternal(Ljava/net/SocketAddress;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Lsun/nio/ch/DatagramChannelImpl;)Ljava/net/DatagramSocket;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBooleanOption(Ljava/net/SocketOption;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntOption(Ljava/net/SocketOption;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "receive(Ljava/nio/ByteBuffer;)Ljava/net/SocketAddress;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setBooleanOption(Ljava/net/SocketOption;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIntOption(Ljava/net/SocketOption;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disconnect()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBroadcast()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor$()Ljava/io/FileDescriptor;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSendBufferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrafficClass()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "receive(Ljava/net/DatagramPacket;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "send(Ljava/net/DatagramPacket;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setBroadcast(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSendBufferSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTrafficClass(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/DefaultAsynchronousChannelProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createProvider(Ljava/lang/String;)Ljava/nio/channels/spi/AsynchronousChannelProvider;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/DefaultSelectorProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljava/nio/channels/spi/SelectorProvider;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/DirectBuffer;": {"fields": {}, "methods": {"address()J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "attachment()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner()Lsun/misc/Cleaner;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/EPoll;": {"fields": {"EPOLLONESHOT:I": {"value": "0x40000000", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EPOLL_CTL_ADD:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EPOLL_CTL_DEL:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EPOLL_CTL_MOD:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_EVENTS:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_FD:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZEOF_EPOLLEVENT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocatePollArray(I)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dataOffset()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epollCreate()I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epollCtl(IIII)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epollWait(IJI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eventSize()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eventsOffset()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "freePollArray(J)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDescriptor(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEvent(JI)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEvents(J)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/EPollPort$Event;": {"fields": {"channel:Lsun/nio/ch/Port$PollableChannel;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "events:I": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/Port$PollableChannel;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channel()Lsun/nio/ch/Port$PollableChannel;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "events()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/EPollPort$EventHandlerTask-IA;": {"fields": {}, "methods": {}}, "Lsun/nio/ch/EPollPort$EventHandlerTask;": {"fields": {"this$0:Lsun/nio/ch/EPollPort;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/EPollPort;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/EPollPort;Lsun/nio/ch/EPollPort$EventHandlerTask-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll()Lsun/nio/ch/EPollPort$Event;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/EPollPort;": {"fields": {"ENOENT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_EPOLL_EVENTS:I": {"value": "0x200", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXECUTE_TASK_OR_SHUTDOWN:Lsun/nio/ch/EPollPort$Event;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NEED_TO_POLL:Lsun/nio/ch/EPollPort$Event;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "epfd:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queue:Ljava/util/concurrent/ArrayBlockingQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sp:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wakeupCount:Ljava/util/concurrent/atomic/AtomicInteger;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetEXECUTE_TASK_OR_SHUTDOWN(Lsun/nio/ch/EPollPort;)Lsun/nio/ch/EPollPort$Event;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetNEED_TO_POLL(Lsun/nio/ch/EPollPort;)Lsun/nio/ch/EPollPort$Event;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetaddress(Lsun/nio/ch/EPollPort;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetepfd(Lsun/nio/ch/EPollPort;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetqueue(Lsun/nio/ch/EPollPort;)Ljava/util/concurrent/ArrayBlockingQueue;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetsp(Lsun/nio/ch/EPollPort;)[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwakeupCount(Lsun/nio/ch/EPollPort;)Ljava/util/concurrent/atomic/AtomicInteger;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mimplClose(Lsun/nio/ch/EPollPort;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smdrain1(I)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/AsynchronousChannelProvider;Lsun/nio/ch/ThreadPool;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close0(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "drain1(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketpair([I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wakeup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executeOnHandlerTask(Ljava/lang/Runnable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdownHandlerTasks()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "start()Lsun/nio/ch/EPollPort;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startPoll(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/ExtendedSocketOption$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/Class;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/ExtendedSocketOption;": {"fields": {"SO_OOBINLINE:Ljava/net/SocketOption;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/FileChannelImpl$SimpleFileLockTable;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lockList:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkList(JJ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeAll()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(Ljava/nio/channels/FileLock;Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/FileChannelImpl$Unmapper-IA;": {"fields": {}, "methods": {}}, "Lsun/nio/ch/FileChannelImpl$Unmapper;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "totalCapacity:J": {"value": null, "other": [".field", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "totalSize:J": {"value": null, "other": [".field", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cap:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJILjava/io/FileDescriptor;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJILjava/io/FileDescriptor;Lsun/nio/ch/FileChannelImpl$Unmapper-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/FileChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAPPED_TRANSFER_SIZE:J": {"value": "0x800000L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAP_PV:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAP_RO:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAP_RW:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TRANSFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocationGranularity:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileSupported:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSharedFileLockTable:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pipeSupported:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "propertyChecked:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferSupported:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "append:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileLockTable:Lsun/nio/ch/FileLockTable;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/FileDispatcher;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parent:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "path:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "positionLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readable:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threads:Lsun/nio/ch/NativeThreadSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writable:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$smunmap0(JJ)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/FileDescriptor;Ljava/lang/String;ZZZLjava/lang/Object;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileLockTable()Lsun/nio/ch/FileLockTable;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()J": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSharedFileLockTable()Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map0(IJJ)J": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open(Ljava/io/FileDescriptor;Ljava/lang/String;ZZLjava/lang/Object;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open(Ljava/io/FileDescriptor;Ljava/lang/String;ZZZLjava/lang/Object;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "position0(Ljava/io/FileDescriptor;J)J": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readInternal(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferFromArbitraryChannel(Ljava/nio/channels/ReadableByteChannel;JJ)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferFromFileChannel(Lsun/nio/ch/FileChannelImpl;JJ)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferTo0(Ljava/io/FileDescriptor;JJLjava/io/FileDescriptor;)J": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToArbitraryChannel(JILjava/nio/channels/WritableByteChannel;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToDirectly(JILjava/nio/channels/WritableByteChannel;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToDirectlyInternal(JILjava/nio/channels/WritableByteChannel;Ljava/io/FileDescriptor;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToTrustedChannel(JJLjava/nio/channels/WritableByteChannel;)J": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unmap(Ljava/nio/MappedByteBuffer;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unmap0(JJ)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeInternal(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "force(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "map(Ljava/nio/channels/FileChannel$MapMode;JJ)Ljava/nio/MappedByteBuffer;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(J)Ljava/nio/channels/FileChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "position(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release(Lsun/nio/ch/FileLockImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferFrom(Ljava/nio/channels/ReadableByteChannel;JJ)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "transferTo(JJLjava/nio/channels/WritableByteChannel;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/FileChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/nio/ByteBuffer;J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/FileDescriptorHolderSocketImpl;": {"fields": {}, "methods": {"(Ljava/io/FileDescriptor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/net/SocketImpl;)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "available()I": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/lang/String;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/InetAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "create(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(I)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "listen(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sendUrgentData(I)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(ILjava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/FileDispatcher;": {"fields": {"INTERRUPTED:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCKED:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NO_LOCK:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RET_EX_LOCK:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canTransferToDirectly(Ljava/nio/channels/SelectableChannel;)Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "duplicateForMapping(Ljava/io/FileDescriptor;)Ljava/io/FileDescriptor;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "force(Ljava/io/FileDescriptor;Z)I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock(Ljava/io/FileDescriptor;ZJJZ)I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release(Ljava/io/FileDescriptor;JJ)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size(Ljava/io/FileDescriptor;)J": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToDirectlyNeedsPositionLock()Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(Ljava/io/FileDescriptor;J)I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/FileDispatcherImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close0(Ljava/io/FileDescriptor;)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeIntFD(I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "force0(Ljava/io/FileDescriptor;Z)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock0(Ljava/io/FileDescriptor;ZJJZ)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preClose0(Ljava/io/FileDescriptor;)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pread0(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pwrite0(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read0(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv0(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release0(Ljava/io/FileDescriptor;JJ)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size0(Ljava/io/FileDescriptor;)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate0(Ljava/io/FileDescriptor;J)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write0(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev0(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canTransferToDirectly(Ljava/nio/channels/SelectableChannel;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "duplicateForMapping(Ljava/io/FileDescriptor;)Ljava/io/FileDescriptor;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "force(Ljava/io/FileDescriptor;Z)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock(Ljava/io/FileDescriptor;ZJJZ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preClose(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pread(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pwrite(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release(Ljava/io/FileDescriptor;JJ)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size(Ljava/io/FileDescriptor;)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transferToDirectlyNeedsPositionLock()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncate(Ljava/io/FileDescriptor;J)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/FileKey;": {"fields": {"st_dev:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_ino:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/io/FileDescriptor;)Lsun/nio/ch/FileKey;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init(Ljava/io/FileDescriptor;)V": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/FileLockImpl;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalid:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/AsynchronousFileChannel;JJZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/FileChannel;JJZ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "release()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/FileLockTable;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSharedFileLockTable(Ljava/nio/channels/Channel;Ljava/io/FileDescriptor;)Lsun/nio/ch/FileLockTable;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeAll()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(Ljava/nio/channels/FileLock;Ljava/nio/channels/FileLock;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Groupable;": {"fields": {}, "methods": {"group()Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/IOStatus;": {"fields": {"EOF:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INTERRUPTED:I": {"value": "-0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THROWN:I": {"value": "-0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNAVAILABLE:I": {"value": "-0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSUPPORTED:I": {"value": "-0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSUPPORTED_CASE:I": {"value": "-0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(I)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAll(J)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(I)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(J)J": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/IOUtil;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IOV_MAX:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "configureBlocking(Ljava/io/FileDescriptor;Z)V": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "drain(I)Z": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdLimit()I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal(Ljava/io/FileDescriptor;)I": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iovMax()I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makePipe(Z)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFD(I)Ljava/io/FileDescriptor;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "randomBytes([B)Z": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;[Ljava/nio/ByteBuffer;IILsun/nio/ch/NativeDispatcher;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;[Ljava/nio/ByteBuffer;Lsun/nio/ch/NativeDispatcher;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readIntoNativeBuffer(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setfdVal(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;[Ljava/nio/ByteBuffer;IILsun/nio/ch/NativeDispatcher;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;[Ljava/nio/ByteBuffer;Lsun/nio/ch/NativeDispatcher;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeFromNativeBuffer(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;JLsun/nio/ch/NativeDispatcher;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/IOVecWrapper$Deallocator;": {"fields": {"obj:Lsun/nio/ch/AllocatedNativeObject;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/AllocatedNativeObject;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/IOVecWrapper;": {"fields": {"BASE_OFFSET:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LEN_OFFSET:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZE_IOVEC:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addressSize:I": {"value": null, "other": [".field", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cached:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buf:[Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "position:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remaining:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shadow:[Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "vecArray:Lsun/nio/ch/AllocatedNativeObject;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Lsun/nio/ch/IOVecWrapper;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clearRefs(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBuffer(I)Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPosition(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRemaining(I)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShadow(I)Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putBase(IJ)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLen(IJ)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setBuffer(ILjava/nio/ByteBuffer;II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setShadow(ILjava/nio/ByteBuffer;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Invoker$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Lsun/nio/ch/Invoker$GroupAndInvokeCount;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Interruptible;": {"fields": {}, "methods": {"interrupt(Ljava/lang/Thread;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Invoker$2;": {"fields": {"val$attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$exc:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$result:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Invoker$3;": {"fields": {"val$attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$exc:Ljava/lang/Throwable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$value:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Invoker$GroupAndInvokeCount;": {"fields": {"group:Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "handlerInvokeCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetgroup(Lsun/nio/ch/Invoker$GroupAndInvokeCount;)Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/AsynchronousChannelGroupImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "group()Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "incrementInvokeCount()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeCount()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resetInvokeCount()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInvokeCount(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Invoker;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxHandlerInvokeCount:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "myGroupAndInvokeCount:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetmyGroupAndInvokeCount()Ljava/lang/ThreadLocal;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bindToGroup(Lsun/nio/ch/AsynchronousChannelGroupImpl;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGroupAndInvokeCount()Lsun/nio/ch/Invoker$GroupAndInvokeCount;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invoke(Ljava/nio/channels/AsynchronousChannel;Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invoke(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeDirect(Lsun/nio/ch/Invoker$GroupAndInvokeCount;Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeIndirectly(Ljava/nio/channels/AsynchronousChannel;Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeIndirectly(Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;Ljava/util/concurrent/Executor;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeIndirectly(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeOnThreadInThreadPool(Lsun/nio/ch/Groupable;Ljava/lang/Runnable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeUnchecked(Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invokeUnchecked(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isBoundToAnyGroup()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mayInvokeDirect(Lsun/nio/ch/Invoker$GroupAndInvokeCount;Lsun/nio/ch/AsynchronousChannelGroupImpl;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/LinuxAsynchronousChannelProvider;": {"fields": {"defaultPort:Lsun/nio/ch/EPollPort;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultEventPort()Lsun/nio/ch/EPollPort;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toPort(Ljava/nio/channels/AsynchronousChannelGroup;)Lsun/nio/ch/Port;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openAsynchronousChannelGroup(ILjava/util/concurrent/ThreadFactory;)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousChannelGroup(Ljava/util/concurrent/ExecutorService;I)Ljava/nio/channels/AsynchronousChannelGroup;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousServerSocketChannel(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openAsynchronousSocketChannel(Ljava/nio/channels/AsynchronousChannelGroup;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/MembershipKeyImpl$Type4;": {"fields": {"groupAddress:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interfAddress:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sourceAddress:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/MulticastChannel;Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;III)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "groupAddress()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interfaceAddress()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "source()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/MembershipKeyImpl$Type6;": {"fields": {"groupAddress:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sourceAddress:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/MulticastChannel;Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;[BI[B)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "groupAddress()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "source()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/MembershipKeyImpl-IA;": {"fields": {}, "methods": {}}, "Lsun/nio/ch/MembershipKeyImpl;": {"fields": {"blockedSet:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ch:Ljava/nio/channels/MulticastChannel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "group:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interf:Ljava/net/NetworkInterface;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalid:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "source:Ljava/net/InetAddress;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/MulticastChannel;Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/MulticastChannel;Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;Lsun/nio/ch/MembershipKeyImpl-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "block(Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "channel()Ljava/nio/channels/MulticastChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "drop()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "invalidate()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "networkInterface()Ljava/net/NetworkInterface;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sourceAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unblock(Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/MembershipRegistry;": {"fields": {"groups:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Lsun/nio/ch/MembershipKeyImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkMembership(Ljava/net/InetAddress;Ljava/net/NetworkInterface;Ljava/net/InetAddress;)Ljava/nio/channels/MembershipKey;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidateAll()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Lsun/nio/ch/MembershipKeyImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/NativeDispatcher;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(Ljava/io/FileDescriptor;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needsPositionLock()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preClose(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pread(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pwrite(Ljava/io/FileDescriptor;JIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;JI)I": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev(Ljava/io/FileDescriptor;JI)J": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/NativeObject;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteOrder:Ljava/nio/ByteOrder;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageSize:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "protected", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocationAddress:J": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IZ)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addressSize()I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "byteOrder()Ljava/nio/ByteOrder;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pageSize()I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocationAddress()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getByte(I)B": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChar(I)C": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDouble(I)D": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFloat(I)F": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInt(I)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLong(I)J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getObject(I)Lsun/nio/ch/NativeObject;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getShort(I)S": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putByte(IB)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putChar(IC)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putDouble(ID)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putFloat(IF)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInt(II)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putLong(IJ)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putObject(ILsun/nio/ch/NativeObject;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putShort(IS)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subObject(I)Lsun/nio/ch/NativeObject;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/NativeThread;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "current()J": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signal(J)V": {"other": [".method", "public", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/NativeThreadSet;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "elts:[J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "used:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "waitingToEmpty:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signalAndWait()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Net$2;": {"fields": {"val$interf:Ljava/net/NetworkInterface;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/NetworkInterface;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/net/Inet4Address;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Net$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Net$3;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Net$4;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Net;": {"fields": {"POLLCONN:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLLERR:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLLHUP:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLLIN:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLLNVAL:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLLOUT:S": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHUT_RD:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHUT_RDWR:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHUT_WR:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSPEC:Ljava/net/ProtocolFamily;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkedIPv6:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exclusiveBind:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fastLoopback:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv6Available:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anyInet4Address(Ljava/net/NetworkInterface;)Ljava/net/Inet4Address;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asInetSocketAddress(Ljava/net/SocketAddress;)Ljava/net/InetSocketAddress;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/ProtocolFamily;Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind0(Ljava/io/FileDescriptor;ZZLjava/net/InetAddress;I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "block4(Ljava/io/FileDescriptor;III)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "block6(Ljava/io/FileDescriptor;[BI[B)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "blockOrUnblock4(ZLjava/io/FileDescriptor;III)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "blockOrUnblock6(ZLjava/io/FileDescriptor;[BI[B)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canIPv6SocketJoinIPv4Group()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canIPv6SocketJoinIPv4Group0()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canJoin6WithIPv4Group()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canJoin6WithIPv4Group0()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAddress(Ljava/net/SocketAddress;)Ljava/net/InetSocketAddress;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect(Ljava/net/ProtocolFamily;Ljava/io/FileDescriptor;Ljava/net/InetAddress;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connect0(ZLjava/io/FileDescriptor;Ljava/net/InetAddress;I)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "drop4(Ljava/io/FileDescriptor;III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "drop6(Ljava/io/FileDescriptor;[BI[B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntOption0(Ljava/io/FileDescriptor;ZII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInterface4(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInterface6(Ljava/io/FileDescriptor;)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoopbackAddress(I)Ljava/net/InetSocketAddress;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevealedLocalAddress(Ljava/net/InetSocketAddress;)Ljava/net/InetSocketAddress;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevealedLocalAddressAsString(Ljava/net/InetSocketAddress;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSocketOption(Ljava/io/FileDescriptor;Ljava/net/ProtocolFamily;Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inet4AsInt(Ljava/net/InetAddress;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inet4FromInt(I)Ljava/net/InetAddress;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inet6AsByteArray(Ljava/net/InetAddress;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExclusiveBindAvailable()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFastTcpLoopbackRequested()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv6Available()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv6Available0()Z": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "join4(Ljava/io/FileDescriptor;III)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "join6(Ljava/io/FileDescriptor;[BI[B)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "joinOrDrop4(ZLjava/io/FileDescriptor;III)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "joinOrDrop6(ZLjava/io/FileDescriptor;[BI[B)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "listen(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress(Ljava/io/FileDescriptor;)Ljava/net/InetSocketAddress;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localInetAddress(Ljava/io/FileDescriptor;)Ljava/net/InetAddress;": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localPort(Ljava/io/FileDescriptor;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(Ljava/io/FileDescriptor;IJ)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollconnValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollerrValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollhupValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollinValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollnvalValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "polloutValue()S": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remoteAddress(Ljava/io/FileDescriptor;)Ljava/net/InetSocketAddress;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remoteInetAddress(Ljava/io/FileDescriptor;)Ljava/net/InetAddress;": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remotePort(Ljava/io/FileDescriptor;)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverSocket(Z)Ljava/io/FileDescriptor;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIntOption0(Ljava/io/FileDescriptor;ZIIIZ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInterface4(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setInterface6(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSocketOption(Ljava/io/FileDescriptor;Ljava/net/ProtocolFamily;Ljava/net/SocketOption;Ljava/lang/Object;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdown(Ljava/io/FileDescriptor;I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket(Ljava/net/ProtocolFamily;Z)Ljava/io/FileDescriptor;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket(Z)Ljava/io/FileDescriptor;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket0(ZZZZ)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateException(Ljava/lang/Exception;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateException(Ljava/lang/Exception;Z)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateToSocketException(Ljava/lang/Exception;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unblock4(Ljava/io/FileDescriptor;III)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unblock6(Ljava/io/FileDescriptor;[BI[B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "useExclusiveBind()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/OptionKey;": {"fields": {"level:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "level()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/PendingFuture;": {"fields": {"CANCELLED:Ljava/util/concurrent/CancellationException;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channel:Ljava/nio/channels/AsynchronousChannel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "context:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exc:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "haveResult:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "latch:Ljava/util/concurrent/CountDownLatch;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeoutTask:Ljava/util/concurrent/Future;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/AsynchronousChannel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/AsynchronousChannel;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/AsynchronousChannel;Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/AsynchronousChannel;Ljava/nio/channels/CompletionHandler;Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prepareForWait()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attachment()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel(Z)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "channel()Ljava/nio/channels/AsynchronousChannel;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exception()Ljava/lang/Throwable;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getContext()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "handler()Ljava/nio/channels/CompletionHandler;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isCancelled()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setContext(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setFailure(Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setResult(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setResult(Ljava/lang/Object;Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeoutTask(Ljava/util/concurrent/Future;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/PipeImpl;": {"fields": {"sink:Ljava/nio/channels/Pipe$SinkChannel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "source:Ljava/nio/channels/Pipe$SourceChannel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sink()Ljava/nio/channels/Pipe$SinkChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "source()Ljava/nio/channels/Pipe$SourceChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/PollArrayWrapper;": {"fields": {"interruptFD:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll0(JIJ)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replaceEntry(Lsun/nio/ch/PollArrayWrapper;ILsun/nio/ch/PollArrayWrapper;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addEntry(Lsun/nio/ch/SelChImpl;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "free()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "grow(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initInterrupt(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interrupt()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(IIJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/PollSelectorImpl;": {"fields": {"fd0:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd1:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interruptLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interruptTriggered:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSelect(J)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseInterrupt()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wakeup()Ljava/nio/channels/Selector;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/PollSelectorProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inheritedChannel()Ljava/nio/channels/Channel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openSelector()Ljava/nio/channels/spi/AbstractSelector;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Port$1;": {"fields": {"this$0:Lsun/nio/ch/Port;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$channel:Ljava/nio/channels/Channel;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/Port;Ljava/nio/channels/Channel;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "onEvent(IZ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Port$PollableChannel;": {"fields": {}, "methods": {"onEvent(IZ)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Port;": {"fields": {"fdToChannel:Ljava/util/Map;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdToChannelLock:Ljava/util/concurrent/locks/ReadWriteLock;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/AsynchronousChannelProvider;Lsun/nio/ch/ThreadPool;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attachForeignChannel(Ljava/nio/channels/Channel;Ljava/io/FileDescriptor;)Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeAllChannels()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "detachForeignChannel(Ljava/lang/Object;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preUnregister(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(ILsun/nio/ch/Port$PollableChannel;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startPoll(II)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unregister(I)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SelChImpl;": {"fields": {}, "methods": {"getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "kill()V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validOps()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SelectionKeyImpl;": {"fields": {"channel:Lsun/nio/ch/SelChImpl;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interestOps:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readyOps:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "selector:Lsun/nio/ch/SelectorImpl;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SelChImpl;Lsun/nio/ch/SelectorImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureValid()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channel()Ljava/nio/channels/SelectableChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIndex()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interestOps()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "interestOps(I)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nioInterestOps()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nioInterestOps(I)Ljava/nio/channels/SelectionKey;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nioReadyOps()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nioReadyOps(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readyOps()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selector()Ljava/nio/channels/Selector;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setIndex(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SelectorImpl;": {"fields": {"keys:Ljava/util/HashSet;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "publicKeys:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "publicSelectedKeys:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "selectedKeys:Ljava/util/Set;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lockAndDoSelect(J)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doSelect(J)I": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseSelector()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implDereg(Lsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRegister(Lsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "processDeregisterQueue()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putEventOps(Lsun/nio/ch/SelectionKeyImpl;I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Ljava/nio/channels/spi/AbstractSelectableChannel;ILjava/lang/Object;)Ljava/nio/channels/SelectionKey;": {"other": [".method", "protected", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "select(J)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectNow()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "selectedKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wakeup()Ljava/nio/channels/Selector;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SelectorProviderImpl;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openDatagramChannel()Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openDatagramChannel(Ljava/net/ProtocolFamily;)Ljava/nio/channels/DatagramChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openPipe()Ljava/nio/channels/Pipe;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openSelector()Ljava/nio/channels/spi/AbstractSelector;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openServerSocketChannel()Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openSocketChannel()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/ServerSocketAdaptor;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ssc:Lsun/nio/ch/ServerSocketChannelImpl;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/ServerSocketChannelImpl;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Lsun/nio/ch/ServerSocketChannelImpl;)Ljava/net/ServerSocket;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/ServerSocketChannelImpl$DefaultOptionsHolder;": {"fields": {"defaultOptions:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultOptions()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/ServerSocketChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_INUSE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReuseAddress:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket:Ljava/net/ServerSocket;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept0(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;I)Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseSelectableChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "kill()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress()Ljava/net/InetSocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(IJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/ServerSocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/ServerSocket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateReadyOps(IILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SharedFileLockTable$FileLockReference;": {"fields": {"fileKey:Lsun/nio/ch/FileKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/channels/FileLock;Ljava/lang/ref/ReferenceQueue;Lsun/nio/ch/FileKey;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileKey()Lsun/nio/ch/FileKey;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SharedFileLockTable;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lockMap:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channel:Ljava/nio/channels/Channel;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileKey:Lsun/nio/ch/FileKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/Channel;Ljava/io/FileDescriptor;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkList(Ljava/util/List;JJ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeKeyIfEmpty(Lsun/nio/ch/FileKey;Ljava/util/List;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeStaleEntries()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeAll()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replace(Ljava/nio/channels/FileLock;Ljava/nio/channels/FileLock;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SimpleAsynchronousFileChannelImpl$1;": {"fields": {"this$0:Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$fli:Lsun/nio/ch/FileLockImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$position:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$result:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$shared:Z": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$size:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;JJZLsun/nio/ch/FileLockImpl;Ljava/nio/channels/CompletionHandler;Lsun/nio/ch/PendingFuture;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SimpleAsynchronousFileChannelImpl$2;": {"fields": {"this$0:Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$dst:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$position:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$result:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;Ljava/nio/ByteBuffer;JLjava/nio/channels/CompletionHandler;Lsun/nio/ch/PendingFuture;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SimpleAsynchronousFileChannelImpl$3;": {"fields": {"this$0:Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$attachment:Ljava/lang/Object;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$handler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$position:J": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$result:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$src:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;Ljava/nio/ByteBuffer;JLjava/nio/channels/CompletionHandler;Lsun/nio/ch/PendingFuture;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SimpleAsynchronousFileChannelImpl$DefaultExecutorHolder;": {"fields": {"defaultExecutor:Ljava/util/concurrent/ExecutorService;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SinkChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_INUSE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseSelectableChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "kill()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateReadyOps(IILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;": {"fields": {"nd:Lsun/nio/ch/FileDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threads:Lsun/nio/ch/NativeThreadSet;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetthreads(Lsun/nio/ch/SimpleAsynchronousFileChannelImpl;)Lsun/nio/ch/NativeThreadSet;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetnd()Lsun/nio/ch/FileDispatcher;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/FileDescriptor;ZZLjava/util/concurrent/ExecutorService;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open(Ljava/io/FileDescriptor;ZZLsun/nio/ch/ThreadPool;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "force(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implLock(JJZLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRead(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRelease(Lsun/nio/ch/FileLockImpl;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implWrite(Ljava/nio/ByteBuffer;JLjava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate(J)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "tryLock(JJZ)Ljava/nio/channels/FileLock;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketAdaptor$1;": {"fields": {"this$0:Lsun/nio/ch/SocketAdaptor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SocketAdaptor;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketAdaptor$2;": {"fields": {"this$0:Lsun/nio/ch/SocketAdaptor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SocketAdaptor;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketAdaptor$SocketInputStream-IA;": {"fields": {}, "methods": {}}, "Lsun/nio/ch/SocketAdaptor$SocketInputStream;": {"fields": {"this$0:Lsun/nio/ch/SocketAdaptor;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/SocketAdaptor;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/SocketAdaptor;Lsun/nio/ch/SocketAdaptor$SocketInputStream-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SocketAdaptor;": {"fields": {"sc:Lsun/nio/ch/SocketChannelImpl;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketInputStream:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeout:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetsc(Lsun/nio/ch/SocketAdaptor;)Lsun/nio/ch/SocketChannelImpl;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgettimeout(Lsun/nio/ch/SocketAdaptor;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/SocketChannelImpl;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Lsun/nio/ch/SocketChannelImpl;)Ljava/net/Socket;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBooleanOption(Ljava/net/SocketOption;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIntOption(Ljava/net/SocketOption;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setBooleanOption(Ljava/net/SocketOption;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIntOption(Ljava/net/SocketOption;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getChannel()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileDescriptor$()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "getInetAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getInputStream()Ljava/io/InputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeepAlive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalAddress()Ljava/net/InetAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLocalPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOOBInline()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOutputStream()Ljava/io/OutputStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPort()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReceiveBufferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReuseAddress()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSendBufferSize()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoLinger()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSoTimeout()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTcpNoDelay()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTrafficClass()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isBound()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isClosed()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInputShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOutputShutdown()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sendUrgentData(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setKeepAlive(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOOBInline(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReceiveBufferSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReuseAddress(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSendBufferSize(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoLinger(ZI)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSoTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTcpNoDelay(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTrafficClass(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketChannelImpl$DefaultOptionsHolder;": {"fields": {"defaultOptions:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultOptions()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SocketChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_CONNECTED:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLED:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLPENDING:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_PENDING:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNCONNECTED:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isInputOpen:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOutputOpen:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReuseAddress:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readerThread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readyToConnect:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remoteAddress:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socket:Ljava/net/Socket;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writerThread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;Ljava/net/InetSocketAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkConnect(Ljava/io/FileDescriptor;ZZ)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureReadOpen()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureWriteOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readerCleanup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendOutOfBandData(Ljava/io/FileDescriptor;B)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writerCleanup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "bind(Ljava/net/SocketAddress;)Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "connect(Ljava/net/SocketAddress;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ensureOpenAndUnconnected()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "finishConnect()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOption(Ljava/net/SocketOption;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRemoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCloseSelectableChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnected()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isConnectionPending()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInputOpen()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOutputOpen()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "kill()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localAddress()Ljava/net/InetSocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(IJ)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remoteAddress()Ljava/net/SocketAddress;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sendOutOfBandData(B)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/NetworkChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOption(Ljava/net/SocketOption;Ljava/lang/Object;)Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownInput()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "shutdownOutput()Ljava/nio/channels/SocketChannel;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "socket()Ljava/net/Socket;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedOptions()Ljava/util/Set;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateReadyOps(IILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketDispatcher;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "preClose(Ljava/io/FileDescriptor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readv(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(Ljava/io/FileDescriptor;JI)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writev(Ljava/io/FileDescriptor;JI)J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SocketOptionRegistry$LazyInitialization;": {"fields": {"options:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "options()Ljava/util/Map;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SocketOptionRegistry$RegistryKey;": {"fields": {"family:Ljava/net/ProtocolFamily;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/net/SocketOption;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/net/SocketOption;Ljava/net/ProtocolFamily;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/SocketOptionRegistry;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findOption(Ljava/net/SocketOption;Ljava/net/ProtocolFamily;)Lsun/nio/ch/OptionKey;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/SourceChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_INUSE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_KILLED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ST_UNINITIALIZED:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fd:Ljava/io/FileDescriptor;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thread:J": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/spi/SelectorProvider;Ljava/io/FileDescriptor;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFD()Ljava/io/FileDescriptor;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFDVal()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseSelectableChannel()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implConfigureBlocking(Z)V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "kill()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([Ljava/nio/ByteBuffer;II)J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "translateAndSetInterestOps(ILsun/nio/ch/SelectionKeyImpl;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndSetReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateAndUpdateReadyOps(ILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateReadyOps(IILsun/nio/ch/SelectionKeyImpl;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/ThreadPool$DefaultThreadPoolHolder;": {"fields": {"defaultThreadPool:Lsun/nio/ch/ThreadPool;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/ThreadPool$$ExternalSyntheticLambda0;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/ThreadPool;": {"fields": {"DEFAULT_THREAD_POOL_INITIAL_SIZE:Ljava/lang/String;": {"value": "\"java.nio.channels.DefaultThreadPool.initialSize\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_THREAD_POOL_THREAD_FACTORY:Ljava/lang/String;": {"value": "\"java.nio.channels.DefaultThreadPool.threadFactory\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor:Ljava/util/concurrent/ExecutorService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFixed:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poolSize:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/concurrent/ExecutorService;ZI)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(ILjava/util/concurrent/ThreadFactory;)Lsun/nio/ch/ThreadPool;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createDefault()Lsun/nio/ch/ThreadPool;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultThreadFactory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefault()Lsun/nio/ch/ThreadPool;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefaultThreadPoolInitialSize()I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDefaultThreadPoolThreadFactory()Ljava/util/concurrent/ThreadFactory;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lambda$defaultThreadFactory$0(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "static", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/util/concurrent/ExecutorService;I)Lsun/nio/ch/ThreadPool;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "executor()Ljava/util/concurrent/ExecutorService;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isFixedThreadPool()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poolSize()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/UnixAsynchronousServerSocketChannelImpl$1;": {"fields": {"this$0:Lsun/nio/ch/UnixAsynchronousServerSocketChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$remote:Ljava/net/InetSocketAddress;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/UnixAsynchronousServerSocketChannelImpl;Ljava/net/InetSocketAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/UnixAsynchronousServerSocketChannelImpl;": {"fields": {"nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptAcc:Ljava/security/AccessControlContext;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptAttachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptFuture:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptHandler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "acceptPending:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accepting:Ljava/util/concurrent/atomic/AtomicBoolean;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "port:Lsun/nio/ch/Port;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/Port;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept0(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;[Ljava/net/InetSocketAddress;)I": {"other": [".method", "private", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enableAccept()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finishAccept(Ljava/io/FileDescriptor;Ljava/net/InetSocketAddress;Ljava/security/AccessControlContext;)Ljava/nio/channels/AsynchronousSocketChannel;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initIDs()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implAccept(Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onEvent(IZ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$1;": {"fields": {"this$0:Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$2;": {"fields": {"this$0:Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"fields": {"$VALUES:[Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONNECT:Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "READ:Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WRITE:Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/nio/ch/UnixAsynchronousSocketChannelImpl$OpType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disableSynchronousRead:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nd:Lsun/nio/ch/NativeDispatcher;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectAttachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectFuture:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectHandler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "connectPending:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdVal:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isGatheringWrite:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isScatteringRead:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pendingRemote:Ljava/net/SocketAddress;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "port:Lsun/nio/ch/Port;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readBuffer:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readBuffers:[Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readFuture:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readHandler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readPending:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readTimeoutTask:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readTimer:Ljava/util/concurrent/Future;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeAttachment:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeBuffer:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeBuffers:[Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeFuture:Lsun/nio/ch/PendingFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeHandler:Ljava/nio/channels/CompletionHandler;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writePending:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeTimeoutTask:Ljava/lang/Runnable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeTimer:Ljava/util/concurrent/Future;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetreadAttachment(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetreadFuture(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Lsun/nio/ch/PendingFuture;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetreadHandler(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Ljava/nio/channels/CompletionHandler;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetreadPending(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetupdateLock(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwriteAttachment(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Ljava/lang/Object;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwriteFuture(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Lsun/nio/ch/PendingFuture;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwriteHandler(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Ljava/nio/channels/CompletionHandler;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetwritePending(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputreadPending(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fputwritePending(Lsun/nio/ch/UnixAsynchronousSocketChannelImpl;Z)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/Port;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/ch/Port;Ljava/io/FileDescriptor;Ljava/net/InetSocketAddress;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkConnect(I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finish(ZZZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finishConnect(Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finishRead(Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finishWrite(Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lockAndUpdateEvents()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setConnected()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateEvents()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "group()Lsun/nio/ch/AsynchronousChannelGroupImpl;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implConnect(Ljava/net/SocketAddress;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRead(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implWrite(ZLjava/nio/ByteBuffer;[Ljava/nio/ByteBuffer;JLjava/util/concurrent/TimeUnit;Ljava/lang/Object;Ljava/nio/channels/CompletionHandler;)Ljava/util/concurrent/Future;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onCancel(Lsun/nio/ch/PendingFuture;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onEvent(IZ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Util$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialValue()Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initialValue()Lsun/nio/ch/Util$BufferCache;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Util$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Util$3;": {"fields": {"val$s:Ljava/util/Set;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "addAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clear()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "containsAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "remove(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "removeAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "retainAll(Ljava/util/Collection;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toArray([Ljava/lang/Object;)[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/ch/Util$BufferCache;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buffers:[Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "start:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offerFirst(Ljava/nio/ByteBuffer;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offerLast(Ljava/nio/ByteBuffer;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeFirst()Ljava/nio/ByteBuffer;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/ch/Util;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_CACHED_BUFFER_SIZE:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TEMP_BUF_POOL_SIZE:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bufferCache:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bugLevel:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetTEMP_BUF_POOL_SIZE()I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smisBufferTooLarge(I)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smisBufferTooLarge(Ljava/nio/ByteBuffer;)Z": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_get(J)B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "_put(JB)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "atBugLevel(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "erase(Ljava/nio/ByteBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "free(Ljava/nio/ByteBuffer;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMaxCachedBufferSize()J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTemporaryDirectBuffer(I)Ljava/nio/ByteBuffer;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isBufferTooLarge(I)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isBufferTooLarge(Ljava/nio/ByteBuffer;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offerFirstTemporaryDirectBuffer(Ljava/nio/ByteBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offerLastTemporaryDirectBuffer(Ljava/nio/ByteBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "releaseTemporaryDirectBuffer(Ljava/nio/ByteBuffer;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subsequence([Ljava/nio/ByteBuffer;II)[Ljava/nio/ByteBuffer;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ungrowableSet(Ljava/util/Set;)Ljava/util/Set;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe()Lsun/misc/Unsafe;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/ArrayDecoder;": {"fields": {}, "methods": {"decode([BII[C)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/ArrayEncoder;": {"fields": {}, "methods": {"encode([CII[B)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/HistoricallyNamedCharset;": {"fields": {}, "methods": {"historicalName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/StreamDecoder;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_BYTE_BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MIN_BYTE_BUFFER_SIZE:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "channelsAvailable:Z": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ch:Ljava/nio/channels/ReadableByteChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cs:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decoder:Ljava/nio/charset/CharsetDecoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "haveLeftoverChar:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "in:Ljava/io/InputStream;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftoverChar:C": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needsFlush:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/Charset;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/CharsetDecoder;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/charset/CharsetDecoder;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forDecoder(Ljava/nio/channels/ReadableByteChannel;Ljava/nio/charset/CharsetDecoder;I)Lsun/nio/cs/StreamDecoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forInputStreamReader(Ljava/io/InputStream;Ljava/lang/Object;Ljava/lang/String;)Lsun/nio/cs/StreamDecoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forInputStreamReader(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/Charset;)Lsun/nio/cs/StreamDecoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forInputStreamReader(Ljava/io/InputStream;Ljava/lang/Object;Ljava/nio/charset/CharsetDecoder;)Lsun/nio/cs/StreamDecoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChannel(Ljava/io/FileInputStream;)Ljava/nio/channels/FileChannel;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inReady()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read0()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readBytes()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodingName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRead([CII)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implReady()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read([CII)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ready()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/cs/StreamEncoder;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_BYTE_BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bb:Ljava/nio/ByteBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ch:Ljava/nio/channels/WritableByteChannel;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cs:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoder:Ljava/nio/charset/CharsetEncoder;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "haveLeftoverChar:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lcb:Ljava/nio/CharBuffer;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leftoverChar:C": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "out:Ljava/io/OutputStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/OutputStream;Ljava/lang/Object;Ljava/nio/charset/Charset;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/OutputStream;Ljava/lang/Object;Ljava/nio/charset/CharsetEncoder;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/channels/WritableByteChannel;Ljava/nio/charset/CharsetEncoder;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flushLeftoverChar(Ljava/nio/CharBuffer;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forEncoder(Ljava/nio/channels/WritableByteChannel;Ljava/nio/charset/CharsetEncoder;I)Lsun/nio/cs/StreamEncoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forOutputStreamWriter(Ljava/io/OutputStream;Ljava/lang/Object;Ljava/lang/String;)Lsun/nio/cs/StreamEncoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forOutputStreamWriter(Ljava/io/OutputStream;Ljava/lang/Object;Ljava/nio/charset/Charset;)Lsun/nio/cs/StreamEncoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forOutputStreamWriter(Ljava/io/OutputStream;Ljava/lang/Object;Ljava/nio/charset/CharsetEncoder;)Lsun/nio/cs/StreamEncoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeBytes()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encodingName()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flush()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "flushBuffer()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoding()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implFlush()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implFlushBuffer()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implWrite([CII)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(I)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;II)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write([CII)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/cs/ThreadLocalCoders$1;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/ThreadLocalCoders$2;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/ThreadLocalCoders$Cache;": {"fields": {"cache:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "moveToFront([Ljava/lang/Object;I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasName(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/cs/ThreadLocalCoders;": {"fields": {"CACHE_SIZE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decoderCache:Lsun/nio/cs/ThreadLocalCoders$Cache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoderCache:Lsun/nio/cs/ThreadLocalCoders$Cache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decoderFor(Ljava/lang/Object;)Ljava/nio/charset/CharsetDecoder;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encoderFor(Ljava/lang/Object;)Ljava/nio/charset/CharsetEncoder;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractBasicFileAttributeView$AttributesBuilder;": {"fields": {"copyAll:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;[Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create(Ljava/util/Set;[Ljava/lang/String;)Lsun/nio/fs/AbstractBasicFileAttributeView$AttributesBuilder;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "match(Ljava/lang/String;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unmodifiableMap()Ljava/util/Map;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractBasicFileAttributeView;": {"fields": {"CREATION_TIME_NAME:Ljava/lang/String;": {"value": "\"creationTime\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_KEY_NAME:Ljava/lang/String;": {"value": "\"fileKey\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IS_DIRECTORY_NAME:Ljava/lang/String;": {"value": "\"isDirectory\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IS_OTHER_NAME:Ljava/lang/String;": {"value": "\"isOther\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IS_REGULAR_FILE_NAME:Ljava/lang/String;": {"value": "\"isRegularFile\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IS_SYMBOLIC_LINK_NAME:Ljava/lang/String;": {"value": "\"isSymbolicLink\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LAST_ACCESS_TIME_NAME:Ljava/lang/String;": {"value": "\"lastAccessTime\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LAST_MODIFIED_TIME_NAME:Ljava/lang/String;": {"value": "\"lastModifiedTime\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZE_NAME:Ljava/lang/String;": {"value": "\"size\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "basicAttributeNames:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addRequestedBasicAttributes(Ljava/nio/file/attribute/BasicFileAttributes;Lsun/nio/fs/AbstractBasicFileAttributeView$AttributesBuilder;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractFileSystemProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "split(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/nio/file/Path;)V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteIfExists(Ljava/nio/file/Path;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Lsun/nio/fs/DynamicFileAttributeView;": {"other": [".method", "varargs", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implDelete(Ljava/nio/file/Path;Z)Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map;": {"other": [".method", "public", "final", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAttribute(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V": {"other": [".method", "public", "final", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractFileTypeDetector;": {"fields": {"TSPECIALS:Ljava/lang/String;": {"value": "\"()<>@,;:/[]?=\\\\\\\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTokenChar(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValidToken(Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implProbeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "probeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractPath$1;": {"fields": {"i:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/nio/fs/AbstractPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/AbstractPath;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractPath;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endsWith(Ljava/lang/String;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "final", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveSibling(Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolveSibling(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "startsWith(Ljava/lang/String;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toFile()Ljava/io/File;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractPoller$1;": {"fields": {"this$0:Lsun/nio/fs/AbstractPoller;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$thisRunnable:Ljava/lang/Runnable;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/AbstractPoller;Ljava/lang/Runnable;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractPoller$2;": {"fields": {"$SwitchMap$sun$nio$fs$AbstractPoller$RequestType:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractPoller$RequestType;": {"fields": {"$VALUES:[Lsun/nio/fs/AbstractPoller$RequestType;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CANCEL:Lsun/nio/fs/AbstractPoller$RequestType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CLOSE:Lsun/nio/fs/AbstractPoller$RequestType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REGISTER:Lsun/nio/fs/AbstractPoller$RequestType;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/nio/fs/AbstractPoller$RequestType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/nio/fs/AbstractPoller$RequestType;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractPoller$Request;": {"fields": {"completed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "params:[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "result:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Lsun/nio/fs/AbstractPoller$RequestType;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/AbstractPoller$RequestType;[Ljava/lang/Object;)V": {"other": [".method", "varargs", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "awaitResult()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parameters()[Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type()Lsun/nio/fs/AbstractPoller$RequestType;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractPoller;": {"fields": {"requestList:Ljava/util/LinkedList;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shutdown:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invoke(Lsun/nio/fs/AbstractPoller$RequestType;[Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "private", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel(Ljava/nio/file/WatchKey;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCancelKey(Ljava/nio/file/WatchKey;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseAll()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRegister(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/lang/Object;": {"other": [".method", "varargs", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processRequests()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Ljava/nio/file/Path;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "final", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "start()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wakeup()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractUserDefinedFileAttributeView;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAccess(Ljava/lang/String;ZZ)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractWatchKey$Event;": {"fields": {"context:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "count:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "kind:Ljava/nio/file/WatchEvent$Kind;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/WatchEvent$Kind;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "context()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "count()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "increment()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "kind()Ljava/nio/file/WatchEvent$Kind;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractWatchKey$State;": {"fields": {"$VALUES:[Lsun/nio/fs/AbstractWatchKey$State;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "READY:Lsun/nio/fs/AbstractWatchKey$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNALLED:Lsun/nio/fs/AbstractWatchKey$State;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/nio/fs/AbstractWatchKey$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/nio/fs/AbstractWatchKey$State;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractWatchKey;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_EVENT_LIST_SIZE:I": {"value": "0x200", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OVERFLOW_EVENT:Lsun/nio/fs/AbstractWatchKey$Event;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dir:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "events:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastModifyEvents:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "state:Lsun/nio/fs/AbstractWatchKey$State;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "watcher:Lsun/nio/fs/AbstractWatchService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/Path;Lsun/nio/fs/AbstractWatchService;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollEvents()Ljava/util/List;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "reset()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "signal()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signalEvent(Ljava/nio/file/WatchEvent$Kind;Ljava/lang/Object;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "watchable()Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "watchable()Ljava/nio/file/Watchable;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "watcher()Lsun/nio/fs/AbstractWatchService;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/AbstractWatchService$1;": {"fields": {"this$0:Lsun/nio/fs/AbstractWatchService;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/AbstractWatchService;Ljava/nio/file/Path;Lsun/nio/fs/AbstractWatchService;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isValid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/AbstractWatchService;": {"fields": {"CLOSE_KEY:Ljava/nio/file/WatchKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closeLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pendingKeys:Ljava/util/concurrent/LinkedBlockingDeque;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkKey(Ljava/nio/file/WatchKey;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkOpen()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeLock()Ljava/lang/Object;": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enqueueKey(Ljava/nio/file/WatchKey;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOpen()Z": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll()Ljava/nio/file/WatchKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll(JLjava/util/concurrent/TimeUnit;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "register(Ljava/nio/file/Path;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "varargs", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "take()Ljava/nio/file/WatchKey;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/BasicFileAttributesHolder;": {"fields": {}, "methods": {"get()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/Cancellable;": {"fields": {"unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "completed:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exception:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pollingAddress:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "exception()Ljava/lang/Throwable;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "runInterruptibly(Lsun/nio/fs/Cancellable;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addressToPollForCancel()J": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancelValue()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRun()V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/DefaultFileSystemProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createProvider(Ljava/lang/String;)Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/DefaultFileTypeDetector;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create()Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/DynamicFileAttributeView;": {"fields": {}, "methods": {"readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/FileOwnerAttributeViewImpl;": {"fields": {"OWNER_NAME:Ljava/lang/String;": {"value": "\"owner\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPosixView:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "view:Ljava/nio/file/attribute/FileAttributeView;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/nio/file/attribute/AclFileAttributeView;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/nio/file/attribute/PosixFileAttributeView;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOwner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOwner(Ljava/nio/file/attribute/UserPrincipal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/Globs;": {"fields": {"EOL:C": {"value": "'\\u0000'", "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "globMetaChars:Ljava/lang/String;": {"value": "\"\\\\*?[{\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "regexMetaChars:Ljava/lang/String;": {"value": "\".^$+{[]|()\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isGlobMeta(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isRegexMeta(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next(Ljava/lang/String;I)C": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRegexPattern(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnixRegexPattern(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toWindowsRegexPattern(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/LinuxDosFileAttributeView$1;": {"fields": {"this$0:Lsun/nio/fs/LinuxDosFileAttributeView;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$attrs:Lsun/nio/fs/UnixFileAttributes;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$dosAttribute:I": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/LinuxDosFileAttributeView;Lsun/nio/fs/UnixFileAttributes;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "creationTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fileKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isArchive()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirectory()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isHidden()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOther()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegularFile()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSymbolicLink()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSystem()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastAccessTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastModifiedTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxDosFileAttributeView;": {"fields": {"ARCHIVE_NAME:Ljava/lang/String;": {"value": "\"archive\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_ARCHIVE:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_HIDDEN:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_NAME:Ljava/lang/String;": {"value": "\"user.DOSATTRIB\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_NAME_AS_BYTES:[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_READONLY:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOS_XATTR_SYSTEM:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HIDDEN_NAME:Ljava/lang/String;": {"value": "\"hidden\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "READONLY_NAME:Ljava/lang/String;": {"value": "\"readonly\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SYSTEM_NAME:Ljava/lang/String;": {"value": "\"system\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dosAttributeNames:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDosAttribute(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateDosAttribute(IZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/DosFileAttributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setArchive(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHidden(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setReadOnly(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSystem(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxFileStore;": {"fields": {"xattrChecked:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "xattrEnabled:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystem;Lsun/nio/fs/UnixMountEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExtendedAttributesEnabled(Lsun/nio/fs/UnixPath;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findMountEntry()Lsun/nio/fs/UnixMountEntry;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportsFileAttributeView(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFileAttributeView(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxFileSystem$SupportedFileFileAttributeViewsHolder;": {"fields": {"supportedFileAttributeViews:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportedFileAttributeViews()Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/LinuxFileSystem;": {"fields": {}, "methods": {"(Lsun/nio/fs/UnixFileSystemProvider;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyNonPosixAttributes(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStore(Lsun/nio/fs/UnixMountEntry;)Ljava/nio/file/FileStore;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMountEntries()Ljava/lang/Iterable;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMountEntries(Ljava/lang/String;)Ljava/lang/Iterable;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newWatchService()Ljava/nio/file/WatchService;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportedFileAttributeViews()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxFileSystemProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Lsun/nio/fs/DynamicFileAttributeView;": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStore(Lsun/nio/fs/UnixPath;)Ljava/nio/file/FileStore;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStore(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/LinuxFileStore;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileTypeDetector()Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileSystem(Ljava/lang/String;)Lsun/nio/fs/LinuxFileSystem;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileSystem(Ljava/lang/String;)Lsun/nio/fs/UnixFileSystem;": {"other": [".method", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxNativeDispatcher;": {"fields": {}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endmntent(J)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fgetxattr(I[BJI)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fgetxattr0(IJJI)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "flistxattr(IJI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fremovexattr(I[B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fremovexattr0(IJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fsetxattr(I[BJI)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fsetxattr0(IJJI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getmntent(JLsun/nio/fs/UnixMountEntry;)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init()V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setmntent([B[B)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setmntent0(JJ)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/LinuxWatchService$LinuxWatchKey;": {"fields": {"ifd:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wd:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixPath;Lsun/nio/fs/LinuxWatchService;II)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "descriptor()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxUserDefinedFileAttributeView;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "USER_NAMESPACE:Ljava/lang/String;": {"value": "\"user.\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "XATTR_NAME_MAX:I": {"value": "0xff", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asList(JI)Ljava/util/List;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyExtendedAttribute(I[BI)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyExtendedAttributes(II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameAsBytes(Lsun/nio/fs/UnixPath;Ljava/lang/String;)[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "list()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "read(Ljava/lang/String;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "write(Ljava/lang/String;Ljava/nio/ByteBuffer;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/LinuxWatchService$Poller;": {"fields": {"BUFFER_SIZE:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_ATTRIB:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_CREATE:I": {"value": "0x100", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_DELETE:I": {"value": "0x200", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_IGNORED:I": {"value": "0x8000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_MODIFY:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_MOVED_FROM:I": {"value": "0x40", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_MOVED_TO:I": {"value": "0x80", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_Q_OVERFLOW:I": {"value": "0x4000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IN_UNMOUNT:I": {"value": "0x2000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_LEN:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_MASK:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_NAME:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFFSETOF_WD:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIZEOF_INOTIFY_EVENT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offsets:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fs:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ifd:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketpair:[I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "watcher:Lsun/nio/fs/LinuxWatchService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wdToKey:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;Lsun/nio/fs/LinuxWatchService;I[I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maskToEventKind(I)Ljava/nio/file/WatchEvent$Kind;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processEvent(IILsun/nio/fs/UnixPath;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implCancelKey(Ljava/nio/file/WatchKey;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implCloseAll()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRegister(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/lang/Object;": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "wakeup()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/LinuxWatchService;": {"fields": {"unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poller:Lsun/nio/fs/LinuxWatchService$Poller;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetpoller(Lsun/nio/fs/LinuxWatchService;)Lsun/nio/fs/LinuxWatchService$Poller;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetunsafe()Lsun/misc/Unsafe;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smeventOffsets()[I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smeventSize()I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sminotifyAddWatch(IJI)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sminotifyRmWatch(II)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$smpoll(II)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "configureBlocking(IZ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eventOffsets()[I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eventSize()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inotifyAddWatch(IJI)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inotifyInit()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inotifyRmWatch(II)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poll(II)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "socketpair([I)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Ljava/nio/file/Path;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/MimeTypesFileTypeDetector;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtension(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implProbeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/NativeBuffer$Deallocator;": {"fields": {"address:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(J)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/NativeBuffer;": {"fields": {"unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner:Lsun/misc/Cleaner;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "owner:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetunsafe()Lsun/misc/Unsafe;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleaner()Lsun/misc/Cleaner;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "owner()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "release()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOwner(Ljava/lang/Object;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/NativeBuffers;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TEMP_BUF_POOL_SIZE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadLocal:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsafe:Lsun/misc/Unsafe;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allocNativeBuffer(I)Lsun/nio/fs/NativeBuffer;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asNativeBuffer([B)Lsun/nio/fs/NativeBuffer;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyCStringToNativeBuffer([BLsun/nio/fs/NativeBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNativeBuffer(I)Lsun/nio/fs/NativeBuffer;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNativeBufferFromCache(I)Lsun/nio/fs/NativeBuffer;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "releaseNativeBuffer(Lsun/nio/fs/NativeBuffer;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/PollingWatchService$1;": {"fields": {"this$0:Lsun/nio/fs/PollingWatchService;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/PollingWatchService;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newThread(Ljava/lang/Runnable;)Ljava/lang/Thread;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/PollingWatchService$2;": {"fields": {"this$0:Lsun/nio/fs/PollingWatchService;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$eventSet:Ljava/util/Set;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$path:Ljava/nio/file/Path;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$s:Lcom/sun/nio/file/SensitivityWatchEventModifier;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/PollingWatchService;Ljava/nio/file/Path;Ljava/util/Set;Lcom/sun/nio/file/SensitivityWatchEventModifier;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/nio/fs/PollingWatchService$PollingWatchKey;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/PollingWatchService$3;": {"fields": {"this$0:Lsun/nio/fs/PollingWatchService;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/PollingWatchService;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/PollingWatchService$CacheEntry;": {"fields": {"lastModified:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastTickCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetlastModified(Lsun/nio/fs/PollingWatchService$CacheEntry;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(JI)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastModified()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastTickCount()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "update(JI)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/PollingWatchService$PollingWatchKey;": {"fields": {"entries:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "events:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileKey:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "poller:Ljava/util/concurrent/ScheduledFuture;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/nio/fs/PollingWatchService;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tickCount:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valid:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/PollingWatchService;Ljava/nio/file/Path;Lsun/nio/fs/PollingWatchService;Ljava/lang/Object;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cancel()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "disable()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "enable(Ljava/util/Set;J)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileKey()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "poll()V": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/PollingWatchService$PollingWatchKey$1;": {"fields": {"this$1:Lsun/nio/fs/PollingWatchService$PollingWatchKey;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/PollingWatchService$PollingWatchKey;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/PollingWatchService;": {"fields": {"map:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "scheduledExecutor:Ljava/util/concurrent/ScheduledExecutorService;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetmap(Lsun/nio/fs/PollingWatchService;)Ljava/util/Map;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetscheduledExecutor(Lsun/nio/fs/PollingWatchService;)Ljava/util/concurrent/ScheduledExecutorService;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mdoPrivilegedRegister(Lsun/nio/fs/PollingWatchService;Ljava/nio/file/Path;Ljava/util/Set;Lcom/sun/nio/file/SensitivityWatchEventModifier;)Lsun/nio/fs/PollingWatchService$PollingWatchKey;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doPrivilegedRegister(Ljava/nio/file/Path;Ljava/util/Set;Lcom/sun/nio/file/SensitivityWatchEventModifier;)Lsun/nio/fs/PollingWatchService$PollingWatchKey;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implClose()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Ljava/nio/file/Path;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixChannelFactory$1;": {"fields": {"$SwitchMap$java$nio$file$StandardOpenOption:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixChannelFactory$Flags;": {"fields": {"append:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "create:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createNew:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteOnClose:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dsync:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "noFollowLinks:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sync:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "truncateExisting:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toFlags(Ljava/util/Set;)Lsun/nio/fs/UnixChannelFactory$Flags;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixChannelFactory;": {"fields": {"fdAccess:Lsun/misc/JavaIOFileDescriptorAccess;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newAsynchronousFileChannel(Lsun/nio/fs/UnixPath;Ljava/util/Set;ILsun/nio/ch/ThreadPool;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileChannel(ILjava/lang/String;ZZ)Ljava/nio/channels/FileChannel;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileChannel(ILsun/nio/fs/UnixPath;Ljava/lang/String;Ljava/util/Set;I)Ljava/nio/channels/FileChannel;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newFileChannel(Lsun/nio/fs/UnixPath;Ljava/util/Set;I)Ljava/nio/channels/FileChannel;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open(ILsun/nio/fs/UnixPath;Ljava/lang/String;Lsun/nio/fs/UnixChannelFactory$Flags;I)Ljava/io/FileDescriptor;": {"other": [".method", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixConstants;": {"fields": {"AT_REMOVEDIR:I": {"value": "0x200", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AT_SYMLINK_NOFOLLOW:I": {"value": "0x100", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EACCES:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EAGAIN:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EEXIST:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EINVAL:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EISDIR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ELOOP:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMFILE:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENODATA:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENOENT:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENOSPC:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENOSYS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENOTDIR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENOTEMPTY:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ERANGE:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EROFS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXDEV:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "F_OK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_APPEND:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_CREAT:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_DSYNC:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_EXCL:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_NOFOLLOW:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_RDONLY:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_RDWR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_SYNC:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_TRUNC:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "O_WRONLY:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "R_OK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IAMB:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFBLK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFCHR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFDIR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFIFO:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFLNK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFMT:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IFREG:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IRGRP:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IROTH:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IRUSR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IWGRP:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IWOTH:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IWUSR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IXGRP:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IXOTH:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_IXUSR:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "W_OK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "X_OK:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get_S_IAMB()I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixCopyFile$1;": {"fields": {"val$attrsToCopy:Lsun/nio/fs/UnixFileAttributes;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$flags:Lsun/nio/fs/UnixCopyFile$Flags;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$source:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$target:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implRun()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixCopyFile$Flags;": {"fields": {"atomicMove:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyBasicAttributes:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyNonPosixAttributes:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyPosixAttributes:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "failIfUnableToCopyBasic:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "failIfUnableToCopyNonPosix:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "failIfUnableToCopyPosix:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interruptible:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replaceExisting:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromCopyOptions([Ljava/nio/file/CopyOption;)Lsun/nio/fs/UnixCopyFile$Flags;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromMoveOptions([Ljava/nio/file/CopyOption;)Lsun/nio/fs/UnixCopyFile$Flags;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixCopyFile;": {"fields": {}, "methods": {"-$$Nest$smcopyFile(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;J)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copy(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyDirectory(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyFile(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;J)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyLink(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copySpecial(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixCopyFile$Flags;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "move(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "transfer(IIJ)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixDirectoryStream$UnixDirectoryIterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "atEof:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextEntry:Ljava/nio/file/Path;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stream:Ljava/nio/file/DirectoryStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/nio/fs/UnixDirectoryStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixDirectoryStream;Ljava/nio/file/DirectoryStream;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSelfOrParent([B)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readNextEntry()Ljava/nio/file/Path;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/file/Path;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixDirectoryStream;": {"fields": {"dir:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dp:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filter:Ljava/nio/file/DirectoryStream$Filter;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isClosed:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator:Ljava/util/Iterator;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "streamLock:Ljava/util/concurrent/locks/ReentrantReadWriteLock;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdir(Lsun/nio/fs/UnixDirectoryStream;)Lsun/nio/fs/UnixPath;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetdp(Lsun/nio/fs/UnixDirectoryStream;)J": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetfilter(Lsun/nio/fs/UnixDirectoryStream;)Ljava/nio/file/DirectoryStream$Filter;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;JLjava/nio/file/DirectoryStream$Filter;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "closeImpl()Z": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "directory()Lsun/nio/fs/UnixPath;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator(Ljava/nio/file/DirectoryStream;)Ljava/util/Iterator;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeLock()Ljava/util/concurrent/locks/Lock;": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixException;": {"fields": {"serialVersionUID:J": {"value": "0x644b857beb44dd12L", "other": [".field", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "errno:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "msg:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "translateToIOException(Ljava/lang/String;Ljava/lang/String;)Ljava/io/IOException;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asIOException(Lsun/nio/fs/UnixPath;)Ljava/io/IOException;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "errno()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "errorString()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rethrowAsIOException(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rethrowAsIOException(Lsun/nio/fs/UnixPath;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rethrowAsIOException(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setError(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileAttributeViews$Basic;": {"fields": {"file:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimes(Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileAttributeViews$Posix;": {"fields": {"GROUP_NAME:Ljava/lang/String;": {"value": "\"group\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OWNER_NAME:Ljava/lang/String;": {"value": "\"owner\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PERMISSIONS_NAME:Ljava/lang/String;": {"value": "\"permissions\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "posixAttributeNames:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addRequestedPosixAttributes(Ljava/nio/file/attribute/PosixFileAttributes;Lsun/nio/fs/AbstractBasicFileAttributeView$AttributesBuilder;)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkReadExtended()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkWriteExtended()V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOwner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/PosixFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes()Lsun/nio/fs/UnixFileAttributes;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setGroup(Ljava/nio/file/attribute/GroupPrincipal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setMode(I)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOwner(Ljava/nio/file/attribute/UserPrincipal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOwners(II)V": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPermissions(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileAttributeViews$Unix;": {"fields": {"CTIME_NAME:Ljava/lang/String;": {"value": "\"ctime\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEV_NAME:Ljava/lang/String;": {"value": "\"dev\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GID_NAME:Ljava/lang/String;": {"value": "\"gid\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INO_NAME:Ljava/lang/String;": {"value": "\"ino\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MODE_NAME:Ljava/lang/String;": {"value": "\"mode\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NLINK_NAME:Ljava/lang/String;": {"value": "\"nlink\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "RDEV_NAME:Ljava/lang/String;": {"value": "\"rdev\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UID_NAME:Ljava/lang/String;": {"value": "\"uid\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unixAttributeNames:Ljava/util/Set;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes([Ljava/lang/String;)Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAttribute(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileAttributeViews;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createBasicView(Lsun/nio/fs/UnixPath;Z)Lsun/nio/fs/UnixFileAttributeViews$Basic;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createOwnerView(Lsun/nio/fs/UnixPath;Z)Lsun/nio/fs/FileOwnerAttributeViewImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createPosixView(Lsun/nio/fs/UnixPath;Z)Lsun/nio/fs/UnixFileAttributeViews$Posix;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createUnixView(Lsun/nio/fs/UnixPath;Z)Lsun/nio/fs/UnixFileAttributeViews$Unix;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileAttributes;": {"fields": {"group:Ljava/nio/file/attribute/GroupPrincipal;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Lsun/nio/fs/UnixFileKey;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "owner:Ljava/nio/file/attribute/UserPrincipal;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_atime_nsec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_atime_sec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_birthtime_sec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_ctime_nsec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_ctime_sec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_dev:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_gid:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_ino:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_mode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_mtime_nsec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_mtime_sec:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_nlink:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_rdev:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_size:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_uid:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Lsun/nio/fs/UnixFileAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(ILsun/nio/fs/UnixPath;Z)Lsun/nio/fs/UnixFileAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Lsun/nio/fs/UnixPath;Z)Lsun/nio/fs/UnixFileAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toFileTime(JJ)Ljava/nio/file/attribute/FileTime;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnixFileAttributes(Ljava/nio/file/attribute/BasicFileAttributes;)Lsun/nio/fs/UnixFileAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asBasicFileAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "creationTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ctime()Ljava/nio/file/attribute/FileTime;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dev()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fileKey()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fileKey()Lsun/nio/fs/UnixFileKey;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gid()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "group()Ljava/nio/file/attribute/GroupPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "ino()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDevice()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDirectory()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOther()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegularFile()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSameFile(Lsun/nio/fs/UnixFileAttributes;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSymbolicLink()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastAccessTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastModifiedTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "mode()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nlink()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "owner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permissions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rdev()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "uid()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileKey;": {"fields": {"st_dev:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "st_ino:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(JJ)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileAttributes$UnixAsBasicFileAttributes;": {"fields": {"attrs:Lsun/nio/fs/UnixFileAttributes;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Lsun/nio/fs/UnixFileAttributes;)Lsun/nio/fs/UnixFileAttributes$UnixAsBasicFileAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "creationTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "fileKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDirectory()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOther()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRegularFile()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSymbolicLink()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastAccessTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lastModifiedTime()Ljava/nio/file/attribute/FileTime;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "unwrap()Lsun/nio/fs/UnixFileAttributes;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileModeAttribute$1;": {"fields": {"$SwitchMap$java$nio$file$attribute$PosixFilePermission:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileModeAttribute;": {"fields": {"ALL_PERMISSIONS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL_READWRITE:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TEMPFILE_PERMISSIONS:I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnixMode(I[Ljava/nio/file/attribute/FileAttribute;)I": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnixMode(Ljava/util/Set;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"fields": {"$VALUES:[Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_PRESENT:Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRESENT:Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNKNOWN:Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileStore;": {"fields": {"loadLock:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "props:Ljava/util/Properties;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dev:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entry:Lsun/nio/fs/UnixMountEntry;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "file:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;Lsun/nio/fs/UnixMountEntry;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "devFor(Lsun/nio/fs/UnixPath;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes()Lsun/nio/fs/UnixFileStoreAttributes;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkIfFeaturePresent(Ljava/lang/String;)Lsun/nio/fs/UnixFileStore$FeatureStatus;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dev()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entry()Lsun/nio/fs/UnixMountEntry;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "file()Lsun/nio/fs/UnixPath;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "findMountEntry()Lsun/nio/fs/UnixMountEntry;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttribute(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBlockSize()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStoreAttributeView(Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTotalSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnallocatedSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUsableSpace()J": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFileAttributeView(Ljava/lang/Class;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "supportsFileAttributeView(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "type()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileStoreAttributes;": {"fields": {"f_bavail:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f_bfree:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f_blocks:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "f_frsize:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/UnixFileStoreAttributes;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "availableBlocks()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "blockSize()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "freeBlocks()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "totalBlocks()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystem$1;": {"fields": {"this$0:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$allowedList:Ljava/util/List;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystem;Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileSystem$2;": {"fields": {"this$0:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystem;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileSystem$3;": {"fields": {"this$0:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$pattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystem;Ljava/util/regex/Pattern;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matches(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileSystem$FileStoreIterator;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entries:Ljava/util/Iterator;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/nio/file/FileStore;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readNext()Ljava/nio/file/FileStore;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/nio/file/FileStore;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileSystem$LookupService$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupPrincipalByGroupName(Ljava/lang/String;)Ljava/nio/file/attribute/GroupPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "lookupPrincipalByName(Ljava/lang/String;)Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixFileSystem$LookupService;": {"fields": {"instance:Ljava/nio/file/attribute/UserPrincipalLookupService;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystem;": {"fields": {"GLOB_SYNTAX:Ljava/lang/String;": {"value": "\"glob\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REGEX_SYNTAX:Ljava/lang/String;": {"value": "\"regex\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultDirectory:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needToResolveAgainstDefaultDirectory:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider:Lsun/nio/fs/UnixFileSystemProvider;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rootDirectory:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetrootDirectory(Lsun/nio/fs/UnixFileSystem;)Lsun/nio/fs/UnixPath;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystemProvider;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "standardFileAttributeViews()Ljava/util/List;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compilePathMatchPattern(Ljava/lang/String;)Ljava/util/regex/Pattern;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyNonPosixAttributes(II)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultDirectory()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStore(Lsun/nio/fs/UnixMountEntry;)Ljava/nio/file/FileStore;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStores()Ljava/lang/Iterable;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMountEntries()Ljava/lang/Iterable;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPath(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;": {"other": [".method", "public", "final", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPathMatcher(Ljava/lang/String;)Ljava/nio/file/PathMatcher;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRootDirectories()Ljava/lang/Iterable;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSeparator()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUserPrincipalLookupService()Ljava/nio/file/attribute/UserPrincipalLookupService;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isOpen()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isReadOnly()Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSolaris()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needToResolveAgainstDefaultDirectory()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeJavaPath(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeNativePath([C)[C": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider()Ljava/nio/file/spi/FileSystemProvider;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "rootDirectory()Lsun/nio/fs/UnixPath;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystemProvider$1;": {"fields": {"this$0:Lsun/nio/fs/UnixFileSystemProvider;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystemProvider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implProbeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystemProvider$2;": {"fields": {"this$0:Lsun/nio/fs/UnixFileSystemProvider;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$detectors:[Lsun/nio/fs/AbstractFileTypeDetector;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixFileSystemProvider;[Lsun/nio/fs/AbstractFileTypeDetector;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implProbeContentType(Ljava/nio/file/Path;)Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystemProvider$3;": {"fields": {"$SwitchMap$java$nio$file$AccessMode:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixFileSystemProvider;": {"fields": {"USER_DIR:Ljava/lang/String;": {"value": "\"user.dir\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "theFileSystem:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkUri(Ljava/net/URI;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chain([Lsun/nio/fs/AbstractFileTypeDetector;)Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method", "final", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAccess(Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkPath(Ljava/nio/file/Path;)Lsun/nio/fs/UnixPath;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copy(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createDirectory(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createLink(Ljava/nio/file/Path;Ljava/nio/file/Path;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "createSymbolicLink(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Lsun/nio/fs/DynamicFileAttributeView;": {"other": [".method", "protected", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileStore(Ljava/nio/file/Path;)Ljava/nio/file/FileStore;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileStore(Lsun/nio/fs/UnixPath;)Ljava/nio/file/FileStore;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileSystem(Ljava/net/URI;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileTypeDetector()Ljava/nio/file/spi/FileTypeDetector;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPath(Ljava/net/URI;)Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getScheme()Ljava/lang/String;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "implDelete(Ljava/nio/file/Path;Z)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isHidden(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSameFile(Ljava/nio/file/Path;Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newAsynchronousFileChannel(Ljava/nio/file/Path;Ljava/util/Set;Ljava/util/concurrent/ExecutorService;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/AsynchronousFileChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/FileChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem;": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newFileSystem(Ljava/lang/String;)Lsun/nio/fs/UnixFileSystem;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readSymbolicLink(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixMountEntry;": {"fields": {"dev:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dir:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstype:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstypeAsString:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "optionsAsString:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opts:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dev()J": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dir()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstype()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasOption(Ljava/lang/String;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIgnored()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isReadOnly()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixNativeDispatcher;": {"fields": {"SUPPORTS_BIRTHTIME:I": {"value": "0x10000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUPPORTS_FUTIMES:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUPPORTS_OPENAT:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "capabilities:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "access(Lsun/nio/fs/UnixPath;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "access0(JI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "birthtimeSupported()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chmod(Lsun/nio/fs/UnixPath;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chmod0(JI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chown(Lsun/nio/fs/UnixPath;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "chown0(JII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close(I)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "closedir(J)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyToNativeBuffer(Lsun/nio/fs/UnixPath;)Lsun/nio/fs/NativeBuffer;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dup(I)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fchmod(II)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fchown(III)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fclose(J)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fdopendir(I)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fopen(Lsun/nio/fs/UnixPath;Ljava/lang/String;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fopen0(JJ)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fpathconf(II)J": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstat(ILsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstatat(I[BILsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fstatat0(IJILsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "futimes(IJJ)V": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "futimesSupported()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getcwd()[B": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getgrgid(I)[B": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getgrnam(Ljava/lang/String;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getgrnam0(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getpwnam(Ljava/lang/String;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getpwnam0(J)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getpwuid(I)[B": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init()I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lchown(Lsun/nio/fs/UnixPath;II)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lchown0(JII)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "link(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "link0(JJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lstat(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lstat0(JLsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mkdir(Lsun/nio/fs/UnixPath;I)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mkdir0(JI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mknod(Lsun/nio/fs/UnixPath;IJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mknod0(JIJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open(Lsun/nio/fs/UnixPath;II)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "open0(JII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openat(I[BII)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openat0(IJII)I": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "openatSupported()Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opendir(Lsun/nio/fs/UnixPath;)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "opendir0(J)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pathconf(Lsun/nio/fs/UnixPath;I)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pathconf0(JI)J": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "read(IJI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readdir(J)[B": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readlink(Lsun/nio/fs/UnixPath;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readlink0(J)[B": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "realpath(Lsun/nio/fs/UnixPath;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "realpath0(J)[B": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rename(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixPath;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rename0(JJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "renameat(I[BI[B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "renameat0(IJIJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rmdir(Lsun/nio/fs/UnixPath;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rmdir0(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stat(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stat0(JLsun/nio/fs/UnixFileAttributes;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "statvfs(Lsun/nio/fs/UnixPath;Lsun/nio/fs/UnixFileStoreAttributes;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "statvfs0(JLsun/nio/fs/UnixFileStoreAttributes;)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "strerror(I)[B": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "symlink([BLsun/nio/fs/UnixPath;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "symlink0(JJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlink(Lsun/nio/fs/UnixPath;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlink0(J)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlinkat(I[BI)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unlinkat0(IJI)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "utimes(Lsun/nio/fs/UnixPath;JJ)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "utimes0(JJJ)V": {"other": [".method", "private", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(IJI)I": {"other": [".method", "static", "native"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixPath;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoder:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fs:Lsun/nio/fs/UnixFileSystem;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offsets:[I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "path:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stringValue:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixFileSystem;[B)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkNotNul(Ljava/lang/String;C)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyPath()Lsun/nio/fs/UnixPath;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/nio/fs/UnixFileSystem;Ljava/lang/String;)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initOffsets()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(Ljava/lang/String;II)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeAndCheck(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve([B[B)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUnixPath(Ljava/nio/file/Path;)Lsun/nio/fs/UnixPath;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asByteArray()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkDelete()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkRead()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkWrite()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Ljava/nio/file/Path;)I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "endsWith(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getByteArrayForSysCalls()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileName()Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileName()Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileSystem()Ljava/nio/file/FileSystem;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileSystem()Lsun/nio/fs/UnixFileSystem;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName(I)Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName(I)Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNameCount()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPathForExceptionMessage()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPathForPermissionCheck()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRoot()Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRoot()Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isAbsolute()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "normalize()Ljava/nio/file/Path;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "openForAttributeAccess(Z)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "register(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "relativize(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "relativize(Ljava/nio/file/Path;)Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve(Ljava/nio/file/Path;)Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "resolve(Ljava/nio/file/Path;)Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resolve([B)Lsun/nio/fs/UnixPath;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startsWith(Ljava/nio/file/Path;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subpath(II)Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subpath(II)Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toAbsolutePath()Ljava/nio/file/Path;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toAbsolutePath()Lsun/nio/fs/UnixPath;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRealPath([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;": {"other": [".method", "public", "varargs"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toUri()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixSecureDirectoryStream$PosixFileAttributeViewImpl;": {"fields": {"this$0:Lsun/nio/fs/UnixSecureDirectoryStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/nio/fs/UnixSecureDirectoryStream;Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkWriteAndUserAccess()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setOwners(II)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOwner()Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "readAttributes()Ljava/nio/file/attribute/PosixFileAttributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setGroup(Ljava/nio/file/attribute/GroupPrincipal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setOwner(Ljava/nio/file/attribute/UserPrincipal;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setPermissions(Ljava/util/Set;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixSecureDirectoryStream$BasicFileAttributeViewImpl;": {"fields": {"file:Lsun/nio/fs/UnixPath;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks:Z": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/nio/fs/UnixSecureDirectoryStream;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mcheckWriteAccess(Lsun/nio/fs/UnixSecureDirectoryStream$BasicFileAttributeViewImpl;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixSecureDirectoryStream;Lsun/nio/fs/UnixPath;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkWriteAccess()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "open()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAttributes()Ljava/nio/file/attribute/BasicFileAttributes;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setTimes(Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/nio/fs/UnixSecureDirectoryStream;": {"fields": {"dfd:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ds:Lsun/nio/fs/UnixDirectoryStream;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "guard:Ldalvik/system/CloseGuard;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetdfd(Lsun/nio/fs/UnixSecureDirectoryStream;)I": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetds(Lsun/nio/fs/UnixSecureDirectoryStream;)Lsun/nio/fs/UnixDirectoryStream;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/nio/fs/UnixPath;JILjava/nio/file/DirectoryStream$Filter;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFileAttributeViewImpl(Lsun/nio/fs/UnixPath;Ljava/lang/Class;Z)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName(Ljava/nio/file/Path;)Lsun/nio/fs/UnixPath;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implDelete(Ljava/nio/file/Path;ZI)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "close()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteDirectory(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteDirectory(Ljava/nio/file/Path;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteFile(Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "deleteFile(Ljava/nio/file/Path;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalize()V": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/lang/Class;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/lang/Object;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFileAttributeView(Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView;": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/lang/Object;Ljava/nio/file/SecureDirectoryStream;Ljava/lang/Object;)V": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "move(Ljava/nio/file/Path;Ljava/nio/file/SecureDirectoryStream;Ljava/nio/file/Path;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newByteChannel(Ljava/lang/Object;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newByteChannel(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newDirectoryStream(Ljava/lang/Object;[Ljava/nio/file/LinkOption;)Ljava/nio/file/SecureDirectoryStream;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "newDirectoryStream(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/nio/file/SecureDirectoryStream;": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixUriUtils;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_DIGIT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_LOWALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "H_UPALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_ALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_ALPHANUM:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_DIGIT:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_LOWALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_MARK:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_PATH:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_PCHAR:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_UNRESERVED:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "L_UPALPHA:J": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hexDigits:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decode(C)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromUri(Lsun/nio/fs/UnixFileSystem;Ljava/net/URI;)Ljava/nio/file/Path;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "highMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "highMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowMask(CC)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lowMask(Ljava/lang/String;)J": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "match(CJJ)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUri(Lsun/nio/fs/UnixPath;)Ljava/net/URI;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixUserPrincipals$Group;": {"fields": {}, "methods": {"(ILjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixUserPrincipals$User-IA;": {"fields": {}, "methods": {}}, "Lsun/nio/fs/UnixUserPrincipals$User;": {"fields": {"id:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isGroup:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ILjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IZLjava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IZLjava/lang/String;Lsun/nio/fs/UnixUserPrincipals$User-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "gid()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isSpecial()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "uid()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/UnixUserPrincipals;": {"fields": {"SPECIAL_EVERYONE:Lsun/nio/fs/UnixUserPrincipals$User;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPECIAL_GROUP:Lsun/nio/fs/UnixUserPrincipals$User;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPECIAL_OWNER:Lsun/nio/fs/UnixUserPrincipals$User;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createSpecial(Ljava/lang/String;)Lsun/nio/fs/UnixUserPrincipals$User;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromGid(I)Lsun/nio/fs/UnixUserPrincipals$Group;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromUid(I)Lsun/nio/fs/UnixUserPrincipals$User;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupGroup(Ljava/lang/String;)Ljava/nio/file/attribute/GroupPrincipal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupName(Ljava/lang/String;Z)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupUser(Ljava/lang/String;)Ljava/nio/file/attribute/UserPrincipal;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/nio/fs/Util;": {"fields": {"jnuEncoding:Ljava/nio/charset/Charset;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "followLinks([Ljava/nio/file/LinkOption;)Z": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jnuEncoding()Ljava/nio/charset/Charset;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSet(Ljava/util/Set;[Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSet([Ljava/lang/Object;)Ljava/util/Set;": {"other": [".method", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "split(Ljava/lang/String;C)[Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBytes(Ljava/lang/String;)[B": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/reflect/CallerSensitive;": {"fields": {}, "methods": {}}, "Lsun/reflect/Reflection;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureMemberAccess(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Object;I)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCallerClass()Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameClassPackage(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameClassPackage(Ljava/lang/ClassLoader;Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSubclassOf(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "verifyMemberAccess(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Object;I)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/reflect/misc/ReflectUtil;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPackageAccess(Ljava/lang/Class;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkPackageAccess(Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkProxyPackageAccess(Ljava/lang/Class;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkProxyPackageAccess(Ljava/lang/ClassLoader;[Ljava/lang/Class;)V": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureMemberAccess(Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/Object;I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAncestor(Ljava/lang/ClassLoader;Ljava/lang/ClassLoader;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNonPublicProxyClass(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPackageAccessible(Ljava/lang/Class;)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isSubclassOf(Ljava/lang/Class;Ljava/lang/Class;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "needsPackageAccessCheck(Ljava/lang/ClassLoader;Ljava/lang/ClassLoader;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newInstance(Ljava/lang/Class;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/action/GetBooleanAction;": {"fields": {"theProp:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/action/GetIntegerAction;": {"fields": {"defaultSet:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "defaultVal:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "theProp:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "run()Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/action/GetPropertyAction;": {"fields": {"defaultVal:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "theProp:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "privilegedGetProperties()Ljava/util/Properties;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "privilegedGetProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "privilegedGetProperty(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/action/GetPropertyAction$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/Properties;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/GetInstance$Instance-IA;": {"fields": {}, "methods": {}}, "Lsun/security/jca/JCAUtil$CachedSecureRandomHolder;": {"fields": {"instance:Ljava/security/SecureRandom;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/GetInstance;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkSuperClass(Ljava/security/Provider$Service;Ljava/lang/Class;Ljava/lang/Class;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/Object;Ljava/security/Provider;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/lang/String;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/Class;Ljava/lang/String;Ljava/security/Provider;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/security/Provider$Service;Ljava/lang/Class;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/security/Provider$Service;Ljava/lang/Class;Ljava/lang/Object;)Lsun/security/jca/GetInstance$Instance;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getService(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getService(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getService(Ljava/lang/String;Ljava/lang/String;Ljava/security/Provider;)Ljava/security/Provider$Service;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServices(Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServices(Ljava/lang/String;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServices(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/GetInstance$Instance;": {"fields": {"impl:Ljava/lang/Object;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/Provider;Ljava/lang/Object;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/Provider;Ljava/lang/Object;Lsun/security/jca/GetInstance$Instance-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toArray()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/ProviderConfig$1;": {"fields": {"this$0:Lsun/security/jca/ProviderConfig;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/jca/ProviderConfig;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/JCAUtil;": {"fields": {"ARRAY_SIZE:I": {"value": "0x1000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSecureRandom()Ljava/security/SecureRandom;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getTempArraySize(I)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/ProviderConfig$3;": {"fields": {"val$value:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/ProviderConfig$2;": {"fields": {"this$0:Lsun/security/jca/ProviderConfig;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/jca/ProviderConfig;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/security/Provider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/ProviderList$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/security/jca/ProviderList;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/ProviderList$1;": {"fields": {"serialVersionUID:J": {"value": "0xffa6e84ca1e2bc5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;DLjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getService(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ProviderConfig;": {"fields": {"CL_STRING:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "MAX_LOAD_TRIES:I": {"value": "0x1e", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "P11_SOL_ARG:Ljava/lang/String;": {"value": "\"${java.home}/lib/security/sunpkcs11-solaris.cfg\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "P11_SOL_NAME:Ljava/lang/String;": {"value": "\"sun.security.pkcs11.SunPKCS11\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "argument:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "className:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoading:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "provider:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tries:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetclassName(Lsun/security/jca/ProviderConfig;)Ljava/lang/String;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mdisableLoad(Lsun/security/jca/ProviderConfig;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$minitProvider(Lsun/security/jca/ProviderConfig;Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/security/Provider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/Provider;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkSunPKCS11Solaris()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "disableLoad()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "doLoadProvider()Ljava/security/Provider;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expand(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasArgument()Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "initProvider(Ljava/lang/String;Ljava/lang/ClassLoader;)Ljava/security/Provider;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shouldLoad()Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getProvider()Ljava/security/Provider;": {"other": [".method", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLoaded()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ProviderList$3;": {"fields": {"this$0:Lsun/security/jca/ProviderList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/jca/ProviderList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/security/Provider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ProviderList$ServiceList;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "firstService:Ljava/security/Provider$Service;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ids:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "providerIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "services:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$0:Lsun/security/jca/ProviderList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$mtryGet(Lsun/security/jca/ProviderList$ServiceList;I)Ljava/security/Provider$Service;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/jca/ProviderList;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/jca/ProviderList;Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addService(Ljava/security/Provider$Service;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tryGet(I)Ljava/security/Provider$Service;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(I)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Ljava/security/Provider$Service;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ProviderList$ServiceList$1;": {"fields": {"index:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "this$1:Lsun/security/jca/ProviderList$ServiceList;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/jca/ProviderList$ServiceList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "next()Ljava/security/Provider$Service;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ProviderList-IA;": {"fields": {}, "methods": {}}, "Lsun/security/jca/ProviderList;": {"fields": {"EMPTY:Lsun/security/jca/ProviderList;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMPTY_PROVIDER:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "P0:[Ljava/security/Provider;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PC0:[Lsun/security/jca/ProviderConfig;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "allLoaded:Z": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "configs:[Lsun/security/jca/ProviderConfig;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "userList:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetconfigs(Lsun/security/jca/ProviderList;)[Lsun/security/jca/ProviderConfig;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/jca/ProviderList-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Lsun/security/jca/ProviderConfig;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "add(Lsun/security/jca/ProviderList;Ljava/security/Provider;)Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fromSecurityProperties()Lsun/security/jca/ProviderList;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProviderConfig(Ljava/lang/String;)Lsun/security/jca/ProviderConfig;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "insertAt(Lsun/security/jca/ProviderList;Ljava/security/Provider;I)Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadAll()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newList([Ljava/security/Provider;)Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Lsun/security/jca/ProviderList;Ljava/lang/String;)Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIndex(Ljava/lang/String;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getJarList([Ljava/lang/String;)Lsun/security/jca/ProviderList;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProvider(I)Ljava/security/Provider;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProvider(Ljava/lang/String;)Ljava/security/Provider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getService(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getServices(Ljava/lang/String;Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServices(Ljava/lang/String;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getServices(Ljava/util/List;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "providers()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeInvalid()Lsun/security/jca/ProviderList;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toArray()[Ljava/security/Provider;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/jca/ServiceId;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/jca/Providers;": {"fields": {"BACKUP_PROVIDER_CLASSNAME:Ljava/lang/String;": {"value": "\"sun.security.provider.VerificationProvider\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_MAXIMUM_ALLOWABLE_TARGET_API_LEVEL_FOR_BC_DEPRECATION:I": {"value": "0x1b", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEPRECATED_ALGORITHMS:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SYSTEM_BOUNCY_CASTLE_PROVIDER:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "jarVerificationProviders:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maximumAllowableApiLevelForBcDeprecation:I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "providerList:Lsun/security/jca/ProviderList;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadLists:Ljava/lang/ThreadLocal;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "threadListsUsed:I": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "beginThreadProviderList(Lsun/security/jca/ProviderList;)Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "changeThreadProviderList(Lsun/security/jca/ProviderList;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBouncyCastleDeprecation(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBouncyCastleDeprecation(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBouncyCastleDeprecation(Ljava/security/Provider;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endThreadProviderList(Lsun/security/jca/ProviderList;)V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFullProviderList()Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMaximumAllowableApiLevelForBcDeprecation()I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProviderList()Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSunProvider()Ljava/security/Provider;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSystemProviderList()Lsun/security/jca/ProviderList;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getThreadProviderList()Lsun/security/jca/ProviderList;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMaximumAllowableApiLevelForBcDeprecation(I)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setProviderList(Lsun/security/jca/ProviderList;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSystemProviderList(Lsun/security/jca/ProviderList;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startJarVerification()Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": "test-api"}, "stopJarVerification(Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/ContentInfo;": {"fields": {"DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "DIGESTED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENCRYPTED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENVELOPED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NETSCAPE_CERT_SEQUENCE_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OLD_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OLD_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OLD_SDATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OLD_SIGNED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PKCS7_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNED_AND_ENVELOPED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNED_DATA_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TIMESTAMP_TOKEN_INFO_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crdata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "data:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ddata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "edata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nsdata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pkcs7:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sdata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sedata:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tstInfo:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "content:Lsun/security/util/DerValue;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contentType:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getContent()Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentBytes()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContentType()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getData()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/ESSCertId;": {"fields": {"hexDumper:Lsun/misc/HexDumpEncoder;": {"value": null, "other": [".field", "private", "static", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certHash:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuer:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialNumber:Lsun/security/x509/SerialNumber;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/PKCS7$VerbatimX509Certificate;": {"fields": {"encodedVerbatim:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/X509Certificate;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/PKCS7$WrappedX509Certificate;": {"fields": {"wrapped:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkValidity()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBasicConstraints()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtendedKeyUsage()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensionValue(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerUniqueID()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyUsage()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNonCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectUniqueID()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTBSCertificate()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/PKCS7;": {"fields": {"certIssuerNames:[Ljava/security/Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certificates:[Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contentInfo:Lsun/security/pkcs/ContentInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "contentType:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "crls:[Ljava/security/cert/X509CRL;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digestAlgorithmIds:[Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oldStyle:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerInfos:[Lsun/security/pkcs/SignerInfo;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "([Lsun/security/x509/AlgorithmId;Lsun/security/pkcs/ContentInfo;[Ljava/security/cert/X509Certificate;[Ljava/security/cert/X509CRL;[Lsun/security/pkcs/SignerInfo;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([Lsun/security/x509/AlgorithmId;Lsun/security/pkcs/ContentInfo;[Ljava/security/cert/X509Certificate;[Lsun/security/pkcs/SignerInfo;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerInputStream;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerInputStream;Z)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseNetscapeCertChain(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseOldSignedData(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseSignedData(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "populateCertIssuerNames()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encodeSignedData(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodeSignedData(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLs()[Ljava/security/cert/X509CRL;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificate(Ljava/math/BigInteger;Lsun/security/x509/X500Name;)Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificates()[Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getContentInfo()Lsun/security/pkcs/ContentInfo;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDigestAlgorithmIds()[Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSignerInfos()[Lsun/security/pkcs/SignerInfo;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getVersion()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOldStyle()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Lsun/security/pkcs/SignerInfo;Ljava/io/InputStream;)Lsun/security/pkcs/SignerInfo;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "verify(Lsun/security/pkcs/SignerInfo;[B)Lsun/security/pkcs/SignerInfo;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "verify()[Lsun/security/pkcs/SignerInfo;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify([B)[Lsun/security/pkcs/SignerInfo;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/PKCS8Key;": {"fields": {"serialVersionUID:J": {"value": "-0x353f5f37736abd94L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "version:Ljava/math/BigInteger;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "algid:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodedKey:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "key:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/x509/AlgorithmId;[B)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildPKCS8Key(Lsun/security/x509/AlgorithmId;[B)Ljava/security/PrivateKey;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;Lsun/security/x509/AlgorithmId;[B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)Lsun/security/pkcs/PKCS8Key;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseKey(Lsun/security/util/DerValue;)Ljava/security/PrivateKey;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "decode(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decode([B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithmId()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFormat()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseKeyBits()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeReplace()Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}}, "Lsun/security/pkcs/PKCS9Attribute;": {"fields": {"BYTE_ARRAY_CLASS:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "CHALLENGE_PASSWORD_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHALLENGE_PASSWORD_STR:Ljava/lang/String;": {"value": "\"ChallengePassword\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONTENT_TYPE_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "CONTENT_TYPE_STR:Ljava/lang/String;": {"value": "\"ContentType\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COUNTERSIGNATURE_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "COUNTERSIGNATURE_STR:Ljava/lang/String;": {"value": "\"Countersignature\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EMAIL_ADDRESS_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "EMAIL_ADDRESS_STR:Ljava/lang/String;": {"value": "\"EmailAddress\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENDED_CERTIFICATE_ATTRIBUTES_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENDED_CERTIFICATE_ATTRIBUTES_STR:Ljava/lang/String;": {"value": "\"ExtendedCertificateAttributes\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENSION_REQUEST_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENSION_REQUEST_STR:Ljava/lang/String;": {"value": "\"ExtensionRequest\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_SERIALNUMBER_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_SERIALNUMBER_STR:Ljava/lang/String;": {"value": "\"IssuerAndSerialNumber\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MESSAGE_DIGEST_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "MESSAGE_DIGEST_STR:Ljava/lang/String;": {"value": "\"MessageDigest\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_OID_TABLE:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "OID_NAME_TABLE:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PKCS9_OIDS:[Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PKCS9_VALUE_TAGS:[[Ljava/lang/Byte;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RSA_PROPRIETARY_STR:Ljava/lang/String;": {"value": "\"RSAProprietary\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIGNATURE_TIMESTAMP_TOKEN_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNATURE_TIMESTAMP_TOKEN_STR:Ljava/lang/String;": {"value": "\"SignatureTimestampToken\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNING_CERTIFICATE_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNING_CERTIFICATE_STR:Ljava/lang/String;": {"value": "\"SigningCertificate\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNING_TIME_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SIGNING_TIME_STR:Ljava/lang/String;": {"value": "\"SigningTime\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLE_VALUED:[Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SMIME_CAPABILITY_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMIME_CAPABILITY_STR:Ljava/lang/String;": {"value": "\"SMIMECapability\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SMIME_SIGNING_DESC_STR:Ljava/lang/String;": {"value": "\"SMIMESigningDesc\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "UNSTRUCTURED_ADDRESS_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSTRUCTURED_ADDRESS_STR:Ljava/lang/String;": {"value": "\"UnstructuredAddress\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSTRUCTURED_NAME_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNSTRUCTURED_NAME_STR:Ljava/lang/String;": {"value": "\"UnstructuredName\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VALUE_CLASSES:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName(Lsun/security/util/ObjectIdentifier;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID(Ljava/lang/String;)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexOf(Ljava/lang/Object;[Ljava/lang/Object;I)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(Lsun/security/util/ObjectIdentifier;Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwSingleValuedException()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "throwTagException(Ljava/lang/Byte;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isKnown()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSingleValued()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/PKCS9Attributes;": {"fields": {"attributes:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "derEncoding:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ignoreUnsupportedAttributes:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permittedAttributes:Ljava/util/Hashtable;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([Lsun/security/pkcs/PKCS9Attribute;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([Lsun/security/util/ObjectIdentifier;Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "castToDerEncoder([Ljava/lang/Object;)[Lsun/security/util/DerEncoder;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decode(Lsun/security/util/DerInputStream;)[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateDerEncoding()[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encode(BLjava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getAttribute(Ljava/lang/String;)Lsun/security/pkcs/PKCS9Attribute;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAttribute(Lsun/security/util/ObjectIdentifier;)Lsun/security/pkcs/PKCS9Attribute;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttributeValue(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAttributeValue(Lsun/security/util/ObjectIdentifier;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getAttributes()[Lsun/security/pkcs/PKCS9Attribute;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDerEncoding()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/pkcs/ParsingException;": {"fields": {"serialVersionUID:J": {"value": "-0x57a8f6dfeae5affbL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/pkcs/SignerInfo;": {"fields": {"DIGEST_PRIMITIVE_SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JAR_DISABLED_CHECK:Lsun/security/util/DisabledAlgorithmConstraints;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SIG_PRIMITIVE_SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "authenticatedAttributes:Lsun/security/pkcs/PKCS9Attributes;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certificateSerialNumber:Ljava/math/BigInteger;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digestAlgorithmId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digestEncryptionAlgorithmId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encryptedDigest:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasTimestamp:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "issuerName:Lsun/security/x509/X500Name;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "timestamp:Ljava/security/Timestamp;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "unauthenticatedAttributes:Lsun/security/pkcs/PKCS9Attributes;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "version:Ljava/math/BigInteger;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": "test-api"}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;Ljava/math/BigInteger;Lsun/security/x509/AlgorithmId;Lsun/security/pkcs/PKCS9Attributes;Lsun/security/x509/AlgorithmId;[BLsun/security/pkcs/PKCS9Attributes;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;Ljava/math/BigInteger;Lsun/security/x509/AlgorithmId;Lsun/security/x509/AlgorithmId;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "verifyTimestamp(Lsun/security/timestamp/TimestampToken;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAuthenticatedAttributes()Lsun/security/pkcs/PKCS9Attributes;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificate(Lsun/security/pkcs/PKCS7;)Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCertificateChain(Lsun/security/pkcs/PKCS7;)Ljava/util/ArrayList;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getCertificateSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDigestAlgorithmId()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDigestEncryptionAlgorithmId()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEncryptedDigest()[B": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getIssuerName()Lsun/security/x509/X500Name;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimestamp()Ljava/security/Timestamp;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTsToken()Lsun/security/pkcs/PKCS7;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnauthenticatedAttributes()Lsun/security/pkcs/PKCS9Attributes;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVersion()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Lsun/security/pkcs/PKCS7;)Lsun/security/pkcs/SignerInfo;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verify(Lsun/security/pkcs/PKCS7;Ljava/io/InputStream;)Lsun/security/pkcs/SignerInfo;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verify(Lsun/security/pkcs/PKCS7;[B)Lsun/security/pkcs/SignerInfo;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/pkcs/SigningCertificateInfo;": {"fields": {"ber:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certId:[Lsun/security/pkcs/ESSCertId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse([B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/CertPathProvider;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/X509Factory;": {"fields": {"ENC_MAX_LENGTH:I": {"value": "0x400000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certCache:Lsun/security/util/Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "crlCache:Lsun/security/util/Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addToCache(Lsun/security/util/Cache;[BLjava/lang/Object;)V": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getFromCache(Lsun/security/util/Cache;[B)Ljava/lang/Object;": {"other": [".method", "private", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "intern(Ljava/security/cert/X509CRL;)Lsun/security/x509/X509CRLImpl;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "intern(Ljava/security/cert/X509Certificate;)Lsun/security/x509/X509CertImpl;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/AdjacencyList;": {"fields": {"mOrigList:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mStepList:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildList(Ljava/util/List;ILsun/security/provider/certpath/BuildStep;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/AdaptableX509CertSelector;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "endDate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serial:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ski:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "startDate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchSubjectKeyID(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "match(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSerialNumber(Ljava/math/BigInteger;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setSkiAndSerialNumber(Lsun/security/x509/AuthorityKeyIdentifierExtension;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSubjectKeyIdentifier([B)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setValidityPeriod(Ljava/util/Date;Ljava/util/Date;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/AlgorithmChecker;": {"fields": {"KU_PRIMITIVE_SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNATURE_PRIMITIVE_SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPathDefaultConstraints:Lsun/security/util/DisabledAlgorithmConstraints;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "publicCALimits:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constraints:Ljava/security/AlgorithmConstraints;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prevPubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedMatch:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedPubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/AlgorithmConstraints;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/TrustAnchor;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/TrustAnchor;Ljava/security/AlgorithmConstraints;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/PublicKey;Ljava/security/cert/X509CRL;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/PublicKey;Lsun/security/x509/AlgorithmId;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkFingerprint(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trySetTrustAnchor(Ljava/security/cert/TrustAnchor;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/BasicChecker;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "caName:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date:Ljava/util/Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prevPubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prevSubject:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sigOnly:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sigProvider:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedPubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/TrustAnchor;Ljava/util/Date;Ljava/lang/String;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeInheritedParamsKey(Ljava/security/PublicKey;Ljava/security/PublicKey;)Ljava/security/PublicKey;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateState(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyNameChaining(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifySignature(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyTimestamp(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/BuildStep;": {"fields": {"BACK:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FAIL:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FOLLOW:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POSSIBLE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUCCEED:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "result:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwable:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "vertex:Lsun/security/provider/certpath/Vertex;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/provider/certpath/Vertex;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificate()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResult()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getThrowable()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVertex()Lsun/security/provider/certpath/Vertex;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resultToString(I)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verboseToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/Builder;": {"fields": {"USE_AIA:Z": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildParams:Lsun/security/provider/certpath/PKIX$BuilderParams;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "matchingPolicies:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetCertConstraints:Ljava/security/cert/X509CertSelector;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/PKIX$BuilderParams;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "distance(Lsun/security/x509/GeneralNameInterface;Lsun/security/x509/GeneralNameInterface;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hops(Lsun/security/x509/GeneralNameInterface;Lsun/security/x509/GeneralNameInterface;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetDistance(Lsun/security/x509/NameConstraintsExtension;Ljava/security/cert/X509Certificate;Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addCertToPath(Ljava/security/cert/X509Certificate;Ljava/util/LinkedList;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMatchingCerts(Ljava/security/cert/X509CertSelector;Ljava/util/Collection;Ljava/util/Collection;Z)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingCerts(Lsun/security/provider/certpath/State;Ljava/util/List;)Ljava/util/Collection;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingPolicies()Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPathCompleted(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeFinalCertFromPath(Ljava/util/LinkedList;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyCert(Ljava/security/cert/X509Certificate;Lsun/security/provider/certpath/State;Ljava/util/List;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/CertId;": {"fields": {"SHA1_ALGID:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certSerialNumber:Lsun/security/x509/SerialNumber;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashAlgId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerKeyHash:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerNameHash:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/X509Certificate;Lsun/security/x509/SerialNumber;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljavax/security/auth/x500/X500Principal;Ljava/security/PublicKey;Lsun/security/x509/SerialNumber;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHashAlgorithm()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerKeyHash()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerNameHash()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/CertPathHelper;": {"fields": {"instance:Lsun/security/provider/certpath/CertPathHelper;": {"value": null, "other": [".field", "protected", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDateAndTime(Ljava/security/cert/X509CRLSelector;Ljava/util/Date;J)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setPathToNames(Ljava/security/cert/X509CertSelector;Ljava/util/Set;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSetDateAndTime(Ljava/security/cert/X509CRLSelector;Ljava/util/Date;J)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "implSetPathToNames(Ljava/security/cert/X509CertSelector;Ljava/util/Set;)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/CertStoreHelper$1;": {"fields": {"val$cl:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "val$type:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/security/provider/certpath/CertStoreHelper;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/CertStoreHelper;": {"fields": {"NUM_TYPES:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cache:Lsun/security/util/Cache;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "classMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetcache()Lsun/security/util/Cache;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Lsun/security/provider/certpath/CertStoreHelper;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isCausedByNetworkIssue(Ljava/lang/String;Ljava/security/cert/CertStoreException;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertStore(Ljava/net/URI;)Ljava/security/cert/CertStore;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isCausedByNetworkIssue(Ljava/security/cert/CertStoreException;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/security/cert/X509CRLSelector;Ljava/util/Collection;Ljava/lang/String;)Ljava/security/cert/X509CRLSelector;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "wrap(Ljava/security/cert/X509CertSelector;Ljavax/security/auth/x500/X500Principal;Ljava/lang/String;)Ljava/security/cert/X509CertSelector;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/ConstraintsChecker;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPathLength:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "i:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxPathLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prevNC:Lsun/security/x509/NameConstraintsExtension;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportedExts:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBasicConstraints(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeBasicConstraints(Ljava/security/cert/X509Certificate;I)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeNameConstraints(Ljava/security/cert/X509Certificate;Lsun/security/x509/NameConstraintsExtension;)Lsun/security/x509/NameConstraintsExtension;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyNameConstraints(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/DistributionPointFetcher;": {"fields": {"ALL_REASONS:[Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRL(Lsun/security/x509/URIName;)Ljava/security/cert/X509CRL;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLs(Ljava/security/cert/X509CRLSelector;Lsun/security/x509/X509CertImpl;Lsun/security/x509/DistributionPoint;[ZZLjava/security/PublicKey;Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/util/List;Ljava/util/Set;Ljava/util/Date;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLs(Ljava/security/cert/X509CRLSelector;ZLjava/security/PublicKey;Ljava/lang/String;Ljava/util/List;[ZLjava/util/Set;Ljava/util/Date;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLs(Ljava/security/cert/X509CRLSelector;ZLjava/security/PublicKey;Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/util/List;[ZLjava/util/Set;Ljava/util/Date;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLs(Lsun/security/x509/X500Name;Ljavax/security/auth/x500/X500Principal;Ljava/util/List;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFullNames(Lsun/security/x509/X500Name;Lsun/security/x509/RDN;)Lsun/security/x509/GeneralNames;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issues(Lsun/security/x509/X509CertImpl;Lsun/security/x509/X509CRLImpl;Ljava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyCRL(Lsun/security/x509/X509CertImpl;Lsun/security/x509/DistributionPoint;Ljava/security/cert/X509CRL;[ZZLjava/security/PublicKey;Ljava/security/cert/X509Certificate;Ljava/lang/String;Ljava/util/Set;Ljava/util/List;Ljava/util/Date;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/ForwardBuilder$PKIXCertComparator;": {"fields": {"METHOD_NME:Ljava/lang/String;": {"value": "\"PKIXCertComparator.compare()\"", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certSkidSelector:Ljava/security/cert/X509CertSelector;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedSubjectDNs:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;Lsun/security/x509/X509CertImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSelector(Lsun/security/x509/X509CertImpl;)Ljava/security/cert/X509CertSelector;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/ForwardBuilder;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "caSelector:Lsun/security/provider/certpath/AdaptableX509CertSelector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "caTargetSelector:Ljava/security/cert/X509CertSelector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eeSelector:Ljava/security/cert/X509CertSelector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "searchAllCertStores:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustAnchor:Ljava/security/cert/TrustAnchor;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustAnchors:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedCerts:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustedSubjectDNs:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/PKIX$BuilderParams;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCerts(Lsun/security/x509/AuthorityInfoAccessExtension;Ljava/util/Collection;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingCACerts(Lsun/security/provider/certpath/ForwardState;Ljava/util/List;Ljava/util/Collection;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingEECerts(Lsun/security/provider/certpath/ForwardState;Ljava/util/List;Ljava/util/Collection;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addCertToPath(Ljava/security/cert/X509Certificate;Ljava/util/LinkedList;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingCerts(Lsun/security/provider/certpath/State;Ljava/util/List;)Ljava/util/Collection;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPathCompleted(Ljava/security/cert/X509Certificate;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeFinalCertFromPath(Ljava/util/LinkedList;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyCert(Ljava/security/cert/X509Certificate;Lsun/security/provider/certpath/State;Ljava/util/List;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/ForwardState;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cert:Lsun/security/x509/X509CertImpl;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forwardCheckers:Ljava/util/ArrayList;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerDN:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keyParamsNeededFlag:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subjectNamesTraversed:Ljava/util/HashSet;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "traversedCACerts:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "initState(Ljava/util/List;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isInitial()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keyParamsNeeded()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "updateState(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/KeyChecker;": {"fields": {"KEY_CERT_SIGN:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPathLen:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remainingCerts:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportedExts:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetConstraints:Ljava/security/cert/CertSelector;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ILjava/security/cert/CertSelector;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyCAKeyUsage(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"fields": {"$VALUES:[Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GOOD:Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REVOKED:Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNKNOWN:Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSP$RevocationStatus;": {"fields": {}, "methods": {"getCertStatus()Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationReason()Ljava/security/cert/CRLReason;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationTime()Ljava/util/Date;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSingleExtensions()Ljava/util/Map;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSP;": {"fields": {"CONNECT_TIMEOUT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_CONNECT_TIMEOUT:I": {"value": "0x3a98", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NONCE_EXTENSION_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;)Lsun/security/provider/certpath/OCSP$RevocationStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;Ljava/net/URI;Ljava/security/cert/X509Certificate;Ljava/util/Date;)Lsun/security/provider/certpath/OCSP$RevocationStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;Ljava/net/URI;Ljava/security/cert/X509Certificate;Ljava/util/Date;Ljava/util/List;)Lsun/security/provider/certpath/OCSP$RevocationStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/util/List;Ljava/net/URI;Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;Ljava/util/Date;Ljava/util/List;)Lsun/security/provider/certpath/OCSPResponse;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderURI(Ljava/security/cert/X509Certificate;)Ljava/net/URI;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderURI(Lsun/security/x509/X509CertImpl;)Ljava/net/URI;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeTimeout()I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSPRequest;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dump:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certIds:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensions:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nonce:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/CertId;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBytes()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertIds()Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNonce()[B": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSPResponse$1;": {"fields": {"$SwitchMap$sun$security$provider$certpath$OCSPResponse$ResponseStatus:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"fields": {"$VALUES:[Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INTERNAL_ERROR:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MALFORMED_REQUEST:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIG_REQUIRED:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUCCESSFUL:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TRY_LATER:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNAUTHORIZED:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNUSED:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/OCSPResponse$SingleResponse-IA;": {"fields": {}, "methods": {}}, "Lsun/security/provider/certpath/OCSPResponse$SingleResponse;": {"fields": {"certId:Lsun/security/provider/certpath/CertId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certStatus:Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextUpdate:Ljava/util/Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revocationReason:Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revocationTime:Ljava/util/Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "singleExtensions:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thisUpdate:Ljava/util/Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetnextUpdate(Lsun/security/provider/certpath/OCSPResponse$SingleResponse;)Ljava/util/Date;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetthisUpdate(Lsun/security/provider/certpath/OCSPResponse$SingleResponse;)Ljava/util/Date;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$mgetCertId(Lsun/security/provider/certpath/OCSPResponse$SingleResponse;)Lsun/security/provider/certpath/CertId;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;Lsun/security/provider/certpath/OCSPResponse$SingleResponse-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertId()Lsun/security/provider/certpath/CertId;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertStatus()Lsun/security/provider/certpath/OCSP$RevocationStatus$CertStatus;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationReason()Ljava/security/cert/CRLReason;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSingleExtensions()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/OCSPResponse;": {"fields": {"CERT_STATUS_GOOD:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERT_STATUS_REVOKED:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERT_STATUS_UNKNOWN:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_MAX_CLOCK_SKEW:I": {"value": "0xdbba0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_TAG:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KP_OCSP_SIGNING_OID:Ljava/lang/String;": {"value": "\"1.3.6.1.5.5.7.3.9\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_CLOCK_SKEW:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_TAG:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCSP_BASIC_RESPONSE_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dump:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rsvalues:[Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values:[Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certs:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responderKeyId:Lsun/security/x509/KeyIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responderName:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responseNonce:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responseStatus:Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sigAlgId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signature:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signerCert:Lsun/security/x509/X509CertImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "singleResponseMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tbsResponseData:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetvalues()[Ljava/security/cert/CRLReason;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeClockSkew()I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifySignature(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponseStatus()Lsun/security/provider/certpath/OCSPResponse$ResponseStatus;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSignerCertificate()Ljava/security/cert/X509Certificate;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSingleResponse(Lsun/security/provider/certpath/CertId;)Lsun/security/provider/certpath/OCSPResponse$SingleResponse;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify(Ljava/util/List;Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;Ljava/util/Date;[B)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIX$BuilderParams;": {"fields": {"params:Ljava/security/cert/PKIXBuilderParameters;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stores:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSubject:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/PKIXBuilderParameters;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkParams(Ljava/security/cert/PKIXBuilderParameters;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTargetSubject(Ljava/util/List;Ljava/security/cert/X509CertSelector;)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certStores()Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxPathLength()I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "params()Ljava/security/cert/PKIXBuilderParameters;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetSubject()Ljavax/security/auth/x500/X500Principal;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIX$CertStoreComparator-IA;": {"fields": {}, "methods": {}}, "Lsun/security/provider/certpath/PKIX$CertStoreComparator;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/PKIX$CertStoreComparator-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Ljava/security/cert/CertStore;Ljava/security/cert/CertStore;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIX$CertStoreTypeException;": {"fields": {"serialVersionUID:J": {"value": "0x679327aecf46397cL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "type:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/security/cert/CertStoreException;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIX$ValidatorParams;": {"fields": {"anchors:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPath:Ljava/security/cert/CertPath;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certs:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkers:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constraints:Ljava/security/cert/CertSelector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gotConstraints:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gotDate:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "params:Ljava/security/cert/PKIXParameters;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policies:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stores:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/CertPath;Ljava/security/cert/PKIXParameters;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/PKIXParameters;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anyPolicyInhibited()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPath()Ljava/security/cert/CertPath;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPathCheckers()Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certStores()Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certificates()Ljava/util/List;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date()Ljava/util/Date;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "explicitPolicyRequired()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPKIXParameters()Ljava/security/cert/PKIXParameters;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initialPolicies()Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyMappingInhibited()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyQualifiersRejected()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revocationEnabled()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCertPath(Ljava/security/cert/CertPath;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sigProvider()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "targetCertConstraints()Ljava/security/cert/CertSelector;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustAnchors()Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIXCertPathValidator;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Ljava/security/cert/TrustAnchor;Lsun/security/provider/certpath/PKIX$ValidatorParams;)Ljava/security/cert/PKIXCertPathValidatorResult;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Lsun/security/provider/certpath/PKIX$ValidatorParams;)Ljava/security/cert/PKIXCertPathValidatorResult;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "engineGetRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineValidate(Ljava/security/cert/CertPath;Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathValidatorResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/PKIX;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkBuilderParams(Ljava/security/cert/CertPathParameters;)Lsun/security/provider/certpath/PKIX$BuilderParams;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkParams(Ljava/security/cert/CertPath;Ljava/security/cert/CertPathParameters;)Lsun/security/provider/certpath/PKIX$ValidatorParams;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDSAPublicKeyWithoutParams(Ljava/security/PublicKey;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PKIXMasterCertPathValidator;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Ljava/security/cert/CertPath;Ljava/util/List;Ljava/util/List;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/PolicyChecker;": {"fields": {"ANY_POLICY:Ljava/lang/String;": {"value": "\"2.5.29.32.0\"", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anyPolicyInhibited:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPathLen:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expPolicyRequired:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "explicitPolicy:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inhibitAnyPolicy:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initPolicies:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "polMappingInhibited:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyMapping:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rejectPolicyQualifiers:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rootNode:Lsun/security/provider/certpath/PolicyNodeImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "supportedExts:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Set;IZZZZLsun/security/provider/certpath/PolicyNodeImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPolicy(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeExplicitPolicy(ILsun/security/x509/X509CertImpl;Z)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergeInhibitAnyPolicy(ILsun/security/x509/X509CertImpl;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mergePolicyMapping(ILsun/security/x509/X509CertImpl;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processParents(IZZLsun/security/provider/certpath/PolicyNodeImpl;Ljava/lang/String;Ljava/util/Set;Z)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processPolicies(ILjava/util/Set;IIIZLsun/security/provider/certpath/PolicyNodeImpl;Lsun/security/x509/X509CertImpl;Z)Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "processPolicyMappings(Lsun/security/x509/X509CertImpl;IILsun/security/provider/certpath/PolicyNodeImpl;ZLjava/util/Set;)Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeInvalidNodes(Lsun/security/provider/certpath/PolicyNodeImpl;ILjava/util/Set;Lsun/security/x509/CertificatePoliciesExtension;)Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rewriteLeafNodes(ILjava/util/Set;Lsun/security/provider/certpath/PolicyNodeImpl;)Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyTree()Ljava/security/cert/PolicyNode;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/PolicyNodeImpl;": {"fields": {"ANY_POLICY:Ljava/lang/String;": {"value": "\"2.5.29.32.0\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isImmutable:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mChildren:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mCriticalityIndicator:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mDepth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mExpectedPolicySet:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mOriginalExpectedPolicySet:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mParent:Lsun/security/provider/certpath/PolicyNodeImpl;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mQualifierSet:Ljava/util/HashSet;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mValidPolicy:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/provider/certpath/PolicyNodeImpl;Ljava/lang/String;Ljava/util/Set;ZLjava/util/Set;Z)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/PolicyNodeImpl;Lsun/security/provider/certpath/PolicyNodeImpl;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addChild(Lsun/security/provider/certpath/PolicyNodeImpl;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyTree(Lsun/security/provider/certpath/PolicyNodeImpl;)Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyNodes(ILjava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyNodesExpectedHelper(ILjava/lang/String;Z)Ljava/util/Set;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyToString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addExpectedPolicy(Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asString()Ljava/lang/String;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "copyTree()Lsun/security/provider/certpath/PolicyNodeImpl;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deleteChild(Ljava/security/cert/PolicyNode;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getChildren()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDepth()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExpectedPolicies()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getParent()Ljava/security/cert/PolicyNode;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyNodes(I)Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyNodesExpected(ILjava/lang/String;Z)Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyNodesValid(ILjava/lang/String;)Ljava/util/Set;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyQualifiers()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValidPolicy()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCritical()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isImmutable()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prune(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setImmutable()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/RevocationChecker$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/security/provider/certpath/RevocationChecker$RevocationProperties;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/RevocationChecker$2;": {"fields": {"$SwitchMap$java$security$cert$PKIXRevocationChecker$Option:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "$SwitchMap$sun$security$provider$certpath$RevocationChecker$Mode:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/RevocationChecker$Mode;": {"fields": {"$VALUES:[Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_CRLS:Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_OCSP:Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREFER_CRLS:Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PREFER_OCSP:Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/security/provider/certpath/RevocationChecker$Mode;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/security/provider/certpath/RevocationChecker$Mode;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/RevocationChecker$RejectKeySelector;": {"fields": {"badKeySet:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "match(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/RevocationChecker$RevocationProperties-IA;": {"fields": {}, "methods": {}}, "Lsun/security/provider/certpath/RevocationChecker$RevocationProperties;": {"fields": {"crlDPEnabled:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspEnabled:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspIssuer:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspSerial:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspSubject:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspUrl:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onlyEE:Z": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/provider/certpath/RevocationChecker$RevocationProperties-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/RevocationChecker;": {"fields": {"ALL_REASONS:[Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRL_SIGN_USAGE:[Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HEX_DIGITS:Ljava/lang/String;": {"value": "\"0123456789ABCDEFabcdef\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAX_CLOCK_SKEW:J": {"value": "0xdbba0L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anchor:Ljava/security/cert/TrustAnchor;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certIndex:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certStores:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crlDP:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crlSignFlag:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerCert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "legacy:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mode:Lsun/security/provider/certpath/RevocationChecker$Mode;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspExtensions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ocspResponses:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "onlyEE:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "params:Lsun/security/provider/certpath/PKIX$ValidatorParams;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prevPubKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responderCert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "responderURI:Ljava/net/URI;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "softFail:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "softFailExceptions:Ljava/util/LinkedList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/TrustAnchor;Lsun/security/provider/certpath/PKIX$ValidatorParams;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildToNewKey(Ljava/security/cert/X509Certificate;Ljava/security/PublicKey;Ljava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certCanSignCrl(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/X509Certificate;Ljava/util/Collection;Ljava/security/PublicKey;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkApprovedCRLs(Ljava/security/cert/X509Certificate;Ljava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkCRLs(Ljava/security/cert/X509Certificate;Ljava/security/PublicKey;Ljava/security/cert/X509Certificate;ZZLjava/util/Set;Ljava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkCRLs(Ljava/security/cert/X509Certificate;Ljava/util/Collection;Ljava/util/Set;Ljava/security/PublicKey;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkOCSP(Ljava/security/cert/X509Certificate;Ljava/util/Collection;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderCert(Ljava/lang/String;Ljava/lang/String;Ljava/util/Set;Ljava/util/List;)Ljava/security/cert/X509Certificate;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderCert(Ljava/lang/String;Ljava/util/Set;Ljava/util/List;)Ljava/security/cert/X509Certificate;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderCert(Ljava/security/cert/X509CertSelector;Ljava/util/Set;Ljava/util/List;)Ljava/security/cert/X509Certificate;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getResponderCert(Lsun/security/provider/certpath/RevocationChecker$RevocationProperties;Ljava/util/Set;Ljava/util/List;)Ljava/security/cert/X509Certificate;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationProperties()Lsun/security/provider/certpath/RevocationChecker$RevocationProperties;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSoftFailException(Ljava/security/cert/CertPathValidatorException;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "stripOutSeparators(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toURI(Ljava/lang/String;)Ljava/net/URI;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateState(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyPossibleCRLs(Ljava/util/Set;Ljava/security/cert/X509Certificate;Ljava/security/PublicKey;Z[ZLjava/util/Set;)Ljava/util/Collection;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyWithSeparateSigningKey(Ljava/security/cert/X509Certificate;Ljava/security/PublicKey;ZLjava/util/Set;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "check(Ljava/security/cert/Certificate;Ljava/util/Collection;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Ljava/security/cert/PKIXRevocationChecker;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "clone()Lsun/security/provider/certpath/RevocationChecker;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSoftFailExceptions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSupportedExtensions()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "init(Ljava/security/cert/TrustAnchor;Lsun/security/provider/certpath/PKIX$ValidatorParams;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init(Z)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isForwardCheckingSupported()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/State;": {"fields": {}, "methods": {"clone()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isInitial()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keyParamsNeeded()Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateState(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/SunCertPathBuilder;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildParams:Lsun/security/provider/certpath/PKIX$BuilderParams;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cf:Ljava/security/cert/CertificateFactory;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finalPublicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pathCompleted:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyTreeResult:Ljava/security/cert/PolicyNode;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "trustAnchor:Ljava/security/cert/TrustAnchor;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addVertices(Ljava/util/Collection;Ljava/util/List;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anchorIsTarget(Ljava/security/cert/TrustAnchor;Ljava/security/cert/CertSelector;)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "build()Ljava/security/cert/PKIXCertPathBuilderResult;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildCertPath(ZLjava/util/List;)Ljava/security/cert/PKIXCertPathBuilderResult;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildForward(Ljava/util/List;Ljava/util/LinkedList;Z)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "depthFirstSearchForward(Ljavax/security/auth/x500/X500Principal;Lsun/security/provider/certpath/ForwardState;Lsun/security/provider/certpath/ForwardBuilder;Ljava/util/List;Ljava/util/LinkedList;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "engineBuild(Ljava/security/cert/CertPathParameters;)Ljava/security/cert/CertPathBuilderResult;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetRevocationChecker()Ljava/security/cert/CertPathChecker;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/SunCertPathBuilderException;": {"fields": {"serialVersionUID:J": {"value": "-0x6c71ede928a01845L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "adjList:Lsun/security/provider/certpath/AdjacencyList;": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Throwable;Lsun/security/provider/certpath/AdjacencyList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/security/provider/certpath/AdjacencyList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAdjacencyList()Lsun/security/provider/certpath/AdjacencyList;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/SunCertPathBuilderResult;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjList:Lsun/security/provider/certpath/AdjacencyList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/CertPath;Ljava/security/cert/TrustAnchor;Ljava/security/cert/PolicyNode;Ljava/security/PublicKey;Lsun/security/provider/certpath/AdjacencyList;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAdjacencyList()Lsun/security/provider/certpath/AdjacencyList;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/URICertStore$UCS;": {"fields": {}, "methods": {"(Ljava/security/cert/CertStoreSpi;Ljava/security/Provider;Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/provider/certpath/URICertStore$URICertStoreParameters;": {"fields": {"hashCode:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uri:Ljava/net/URI;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgeturi(Lsun/security/provider/certpath/URICertStore$URICertStoreParameters;)Ljava/net/URI;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URI;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/URICertStore;": {"fields": {"CACHE_SIZE:I": {"value": "0xb9", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHECK_INTERVAL:I": {"value": "0x7530", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRL_CONNECT_TIMEOUT:I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_CRL_CONNECT_TIMEOUT:I": {"value": "0x3a98", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certStoreCache:Lsun/security/util/Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certs:Ljava/util/Collection;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crl:Ljava/security/cert/X509CRL;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "factory:Ljava/security/cert/CertificateFactory;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastChecked:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lastModified:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ldap:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ldapCertStore:Ljava/security/cert/CertStore;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ldapHelper:Lsun/security/provider/certpath/CertStoreHelper;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ldapPath:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uri:Ljava/net/URI;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/CertStoreParameters;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Lsun/security/provider/certpath/URICertStore$URICertStoreParameters;)Ljava/security/cert/CertStore;": {"other": [".method", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Lsun/security/x509/AccessDescription;)Ljava/security/cert/CertStore;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingCRLs(Ljava/security/cert/X509CRL;Ljava/security/cert/CRLSelector;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMatchingCerts(Ljava/util/Collection;Ljava/security/cert/CertSelector;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "initializeTimeout()I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "engineGetCRLs(Ljava/security/cert/CRLSelector;)Ljava/util/Collection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "engineGetCertificates(Ljava/security/cert/CertSelector;)Ljava/util/Collection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/Vertex;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwable:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificate()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIndex()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getThrowable()Ljava/lang/Throwable;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "indexToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "moreToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIndex(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setThrowable(Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "throwableToString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/X509CertPath;": {"fields": {"COUNT_ENCODING:Ljava/lang/String;": {"value": "\"count\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PKCS7_ENCODING:Ljava/lang/String;": {"value": "\"PKCS7\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PKIPATH_ENCODING:Ljava/lang/String;": {"value": "\"PkiPath\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodingList:Ljava/util/Collection;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x453f54f74c4520b4L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "certs:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodePKCS7()[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodePKIPATH()[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodingsStatic()Ljava/util/Iterator;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parsePKCS7(Ljava/io/InputStream;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parsePKIPATH(Ljava/io/InputStream;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readAllBytes(Ljava/io/InputStream;)[B": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificates()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncodings()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/provider/certpath/X509CertificatePair;": {"fields": {"TAG_FORWARD:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_REVERSE:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cache:Lsun/security/util/Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forward:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reverse:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/X509Certificate;Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkPair()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clearCache()V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "emit(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "generateCertificatePair([B)Lsun/security/provider/certpath/X509CertificatePair;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getForward()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReverse()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setForward(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setReverse(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/timestamp/TimestampToken;": {"fields": {"genTime:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashAlgorithm:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashedMessage:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nonce:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policy:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialNumber:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "version:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parse([B)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getHashAlgorithm()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getHashedMessage()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getNonce()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getPolicyID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/AbstractAlgorithmConstraints$1;": {"fields": {"val$propertyName:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/AbstractAlgorithmConstraints;": {"fields": {"decomposer:Lsun/security/util/AlgorithmDecomposer;": {"value": null, "other": [".field", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/AlgorithmDecomposer;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkAlgorithm([Ljava/lang/String;Ljava/lang/String;Lsun/security/util/AlgorithmDecomposer;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getAlgorithms(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/AlgorithmDecomposer;": {"fields": {"pattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "transPattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decomposeImpl(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decomposeOneHash(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasLoop(Ljava/util/Set;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decompose(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/AnchorCertificates$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/Void;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/AnchorCertificates;": {"fields": {"HASH:Ljava/lang/String;": {"value": "\"SHA-256\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certs:Ljava/util/HashSet;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetcerts()Ljava/util/HashSet;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$sfputcerts(Ljava/util/HashSet;)V": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/BitArray;": {"fields": {"BITS_PER_UNIT:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "BYTES_PER_LINE:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NYBBLE:[[B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "repn:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/BitArray;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "position(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "subscript(I)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "length()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(IZ)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toBooleanArray()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toByteArray()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "truncate()Lsun/security/util/BitArray;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ByteArrayLexOrder;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([B[B)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ByteArrayTagOrder;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare([B[B)I": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Cache$CacheVisitor;": {"fields": {}, "methods": {"visit(Ljava/util/Map;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Cache$EqualByteArray;": {"fields": {"b:[B": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/util/CertConstraintParameters;": {"fields": {"cert:Ljava/security/cert/X509Certificate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trustedMatch:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/cert/X509Certificate;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificate()Ljava/security/cert/X509Certificate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTrustedMatch()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Cache;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "newHardMemoryCache(I)Lsun/security/util/Cache;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "newHardMemoryCache(II)Lsun/security/util/Cache;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newNullCache()Lsun/security/util/Cache;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSoftMemoryCache(I)Lsun/security/util/Cache;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newSoftMemoryCache(II)Lsun/security/util/Cache;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Lsun/security/util/Cache$CacheVisitor;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCapacity(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeout(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Debug;": {"fields": {"args:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexDigits:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prefix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;)Lsun/security/util/Debug;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/String;)Lsun/security/util/Debug;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isOn(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "marshal(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toHexString(Ljava/math/BigInteger;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString([B)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "println()V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "println(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/util/DerEncoder;": {"fields": {}, "methods": {"derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/DerInputBuffer;": {"fields": {}, "methods": {"([B)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([BII)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getTime(IZ)Ljava/util/Date;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dup()Lsun/security/util/DerInputBuffer;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Lsun/security/util/DerInputBuffer;)Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBigInteger(IZ)Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBitString()[B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBitString(I)[B": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGeneralizedTime(I)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getInteger(I)I": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getPos()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSlice(II)[B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUTCTime(I)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getUnalignedBitString()Lsun/security/util/BitArray;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "peek()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toByteArray()[B": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "truncate(I)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DerIndefLenConverter;": {"fields": {"CLASS_MASK:I": {"value": "0xc0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FORM_MASK:I": {"value": "0x20", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LEN_LONG:I": {"value": "0x80", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LEN_MASK:I": {"value": "0x7f", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SKIP_EOC_BYTES:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_MASK:I": {"value": "0x1f", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "data:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "dataPos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "dataSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ndefsList:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newData:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "newDataPos:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "numOfTotalLenBytes:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "unresolved:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getLengthBytes(I)[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNumOfLenBytes(I)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEOC(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIndefinite(I)Z": {"other": [".method", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isLongForm(I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLength()I": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parseTag()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parseValue(I)V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeLength(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "writeLengthAndValue()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeTag()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeValue(I)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "convert([B)[B": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/util/DerInputStream;": {"fields": {"buffer:Lsun/security/util/DerInputBuffer;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tag:B": {"value": null, "other": [".field", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerInputBuffer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([BIIZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLength(ILjava/io/InputStream;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getLength(Ljava/io/InputStream;)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init([BIIZ)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readString(BLjava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "available()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBMPString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBitString()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getByte()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getBytes([B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDerValue()Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEnumerated()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGeneralString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGeneralizedTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIA5String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInteger()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getLength()I": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getNull()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getOctetString()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getPositiveBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPrintableString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSequence(I)[Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSequence(IZ)[Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSet(I)[Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSet(IZ)[Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSet(IZZ)[Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getT61String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUTCTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getUTF8String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getUnalignedBitString()Lsun/security/util/BitArray;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mark(I)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "peekByte()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "readVector(I)[Lsun/security/util/DerValue;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readVector(IZ)[Lsun/security/util/DerValue;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "subStream(IZ)Lsun/security/util/DerInputStream;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toByteArray()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/DerOutputStream;": {"fields": {"lexOrder:Lsun/security/util/ByteArrayLexOrder;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tagOrder:Lsun/security/util/ByteArrayTagOrder;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "putIntegerContents(I)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putOrderedSet(B[Lsun/security/util/DerEncoder;Ljava/util/Comparator;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "putTime(Ljava/util/Date;B)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "writeString(Ljava/lang/String;BLjava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putBMPString(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putBitString([B)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putBoolean(Z)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putDerValue(Lsun/security/util/DerValue;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putEnumerated(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putGeneralString(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putGeneralizedTime(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putIA5String(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putInteger(I)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putInteger(Ljava/lang/Integer;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putInteger(Ljava/math/BigInteger;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putLength(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putNull()V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOID(Lsun/security/util/ObjectIdentifier;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOctetString([B)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putOrderedSet(B[Lsun/security/util/DerEncoder;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putOrderedSetOf(B[Lsun/security/util/DerEncoder;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putPrintableString(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putSequence([Lsun/security/util/DerValue;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putSet([Lsun/security/util/DerValue;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putT61String(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putTag(BZB)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putTruncatedUnalignedBitString(Lsun/security/util/BitArray;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "putUTCTime(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putUTF8String(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "putUnalignedBitString(Lsun/security/util/BitArray;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "write(BLsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "write(B[B)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "writeImplicit(BLsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/DerValue;": {"fields": {"TAG_APPLICATION:B": {"value": "0x40t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_CONTEXT:B": {"value": "-0x80t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_PRIVATE:B": {"value": "-0x40t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_UNIVERSAL:B": {"value": "0x0t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_BMPString:B": {"value": "0x1et", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_BitString:B": {"value": "0x3t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Boolean:B": {"value": "0x1t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Enumerated:B": {"value": "0xat", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_GeneralString:B": {"value": "0x1bt", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_GeneralizedTime:B": {"value": "0x18t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_IA5String:B": {"value": "0x16t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Integer:B": {"value": "0x2t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Null:B": {"value": "0x5t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_ObjectId:B": {"value": "0x6t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_OctetString:B": {"value": "0x4t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_PrintableString:B": {"value": "0x13t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Sequence:B": {"value": "0x30t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_SequenceOf:B": {"value": "0x30t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_Set:B": {"value": "0x31t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_SetOf:B": {"value": "0x31t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_T61String:B": {"value": "0x14t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_UTF8String:B": {"value": "0xct", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_UniversalString:B": {"value": "0x1ct", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tag_UtcTime:B": {"value": "0x17t", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buffer:Lsun/security/util/DerInputBuffer;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "data:Lsun/security/util/DerInputStream;": {"value": null, "other": [".field", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "length:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "originalEncodedForm:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "tag:B": {"value": null, "other": [".field", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(BLjava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(B[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputBuffer;Z)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([BII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "append([B[B)[B": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createTag(BZB)B": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "doEquals(Lsun/security/util/DerValue;Lsun/security/util/DerValue;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(BLjava/lang/String;)Lsun/security/util/DerInputStream;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init(ZLjava/io/InputStream;)Lsun/security/util/DerInputStream;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isPrintableStringChar(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Lsun/security/util/DerValue;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAsString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBMPString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBitString()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getBitString(Z)[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBoolean()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getData()Lsun/security/util/DerInputStream;": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDataBytes()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEnumerated()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGeneralString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGeneralizedTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIA5String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInteger()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getOctetString()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getOriginalEncodedForm()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPositiveBigInteger()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getPrintableString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getT61String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTag()B": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUTCTime()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUTF8String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnalignedBitString()Lsun/security/util/BitArray;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getUnalignedBitString(Z)Lsun/security/util/BitArray;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isApplication()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isConstructed()Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isConstructed(B)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isContextSpecific()Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isContextSpecific(B)Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isPrivate()Z": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isUniversal()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "length()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "resetTag(B)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toByteArray()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toDerInputStream()Lsun/security/util/DerInputStream;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/util/DisabledAlgorithmConstraints$1;": {"fields": {"$SwitchMap$sun$security$util$DisabledAlgorithmConstraints$Constraint$Operator:[I": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"fields": {"$VALUES:[Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EQ:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GE:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GT:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LE:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "LT:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NE:Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "of(Ljava/lang/String;)Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "values()[Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints$Constraint-IA;": {"fields": {}, "methods": {}}, "Lsun/security/util/DisabledAlgorithmConstraints$Constraint;": {"fields": {"algorithm:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "nextConstraint:Lsun/security/util/DisabledAlgorithmConstraints$Constraint;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/util/DisabledAlgorithmConstraints$Constraint-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permits(Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Ljava/security/Key;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints$Constraints;": {"fields": {"keySizePattern:Ljava/util/regex/Pattern;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constraintsMap:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getConstraints(Ljava/lang/String;)Ljava/util/Set;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Ljava/security/Key;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints$KeySizeConstraint;": {"fields": {"maxSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "prohibitedSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Lsun/security/util/DisabledAlgorithmConstraints$Constraint$Operator;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permitsImpl(Ljava/security/Key;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Ljava/security/Key;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints$jdkCAConstraint;": {"fields": {}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permits(Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/DisabledAlgorithmConstraints;": {"fields": {"PROPERTY_CERTPATH_DISABLED_ALGS:Ljava/lang/String;": {"value": "\"jdk.certpath.disabledAlgorithms\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPERTY_JAR_DISABLED_ALGS:Ljava/lang/String;": {"value": "\"jdk.jar.disabledAlgorithms\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPERTY_TLS_DISABLED_ALGS:Ljava/lang/String;": {"value": "\"jdk.tls.disabledAlgorithms\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algorithmConstraints:Lsun/security/util/DisabledAlgorithmConstraints$Constraints;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "disabledAlgorithms:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetdebug()Lsun/security/util/Debug;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/security/util/AlgorithmDecomposer;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkConstraints(Ljava/util/Set;Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkConstraints(Ljava/util/Set;Ljava/lang/String;Ljava/security/Key;Ljava/security/AlgorithmParameters;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkProperty(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permits(Ljava/util/Set;Ljava/security/cert/X509Certificate;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permits(Ljava/util/Set;Lsun/security/util/CertConstraintParameters;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "permits(Ljava/util/Set;Ljava/lang/String;Ljava/security/AlgorithmParameters;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permits(Ljava/util/Set;Ljava/lang/String;Ljava/security/Key;Ljava/security/AlgorithmParameters;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "permits(Ljava/util/Set;Ljava/security/Key;)Z": {"other": [".method", "public", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/util/HexDumpEncoder;": {"fields": {"currentByte:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pStream:Ljava/io/PrintStream;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thisLine:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thisLineLength:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBytes(Ljava/nio/ByteBuffer;)[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hexDigit(Ljava/io/PrintStream;B)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerAtom()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bytesPerLine()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/nio/ByteBuffer;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeAtom(Ljava/io/OutputStream;[BII)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer([B)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer(Ljava/io/InputStream;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer(Ljava/nio/ByteBuffer;Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBuffer([BLjava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeBufferPrefix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLinePrefix(Ljava/io/OutputStream;I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeLineSuffix(Ljava/io/OutputStream;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readFully(Ljava/io/InputStream;[B)I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/KeyUtil;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeySize(Ljava/security/Key;)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Length;": {"fields": {}, "methods": {"length()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ManifestDigester$Entry;": {"fields": {"length:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lengthWithBlankLine:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "offset:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oldStyle:Z": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rawBytes:[B": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(III[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doOldStyle(Ljava/security/MessageDigest;[BII)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digest(Ljava/security/MessageDigest;)[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "digestWorkaround(Ljava/security/MessageDigest;)[B": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Lsun/security/util/ManifestDigester$Position;": {"fields": {"endOfFirstLine:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "endOfSection:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "startOfNext:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/ManifestDigester;": {"fields": {"MF_MAIN_ATTRS:Ljava/lang/String;": {"value": "\"Manifest-Main-Attributes\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "entries:Ljava/util/HashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rawBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "findSection(ILsun/security/util/ManifestDigester$Position;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isNameAttr([BI)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/String;Z)Lsun/security/util/ManifestDigester$Entry;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "manifestDigest(Ljava/security/MessageDigest;)[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/util/ManifestEntryVerifier$SunProviderHolder;": {"fields": {"instance:Ljava/security/Provider;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetinstance()Ljava/security/Provider;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/ManifestEntryVerifier;": {"fields": {"debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexc:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createdDigests:Ljava/util/HashMap;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "digests:Ljava/util/ArrayList;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "entry:Ljava/util/jar/JarEntry;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "man:Ljava/util/jar/Manifest;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "manifestHashes:Ljava/util/ArrayList;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signers:[Ljava/security/CodeSigner;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "skip:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/jar/Manifest;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toHex([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEntry()Ljava/util/jar/JarEntry;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEntry(Ljava/lang/String;Ljava/util/jar/JarEntry;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "update(B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "update([BII)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify(Ljava/util/Hashtable;Ljava/util/Hashtable;)[Ljava/security/CodeSigner;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/MemoryCache$CacheEntry;": {"fields": {}, "methods": {"getKey()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid(J)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/MemoryCache$HardCacheEntry;": {"fields": {"expirationTime:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "value:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;J)V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid(J)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/MemoryCache$SoftCacheEntry;": {"fields": {"expirationTime:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;JLjava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "invalidate()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValid(J)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/MemoryCache;": {"fields": {"DEBUG:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOAD_FACTOR:F": {"value": "0.75f", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cacheMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lifetime:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maxSize:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(ZI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZII)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emptyQueue()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expungeExpiredEntries()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCachedEntries()Ljava/util/Map;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Lsun/security/util/Cache$CacheVisitor;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newEntry(Ljava/lang/Object;Ljava/lang/Object;JLjava/lang/ref/ReferenceQueue;)Lsun/security/util/MemoryCache$CacheEntry;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCapacity(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeout(I)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/NullCache;": {"fields": {"INSTANCE:Lsun/security/util/Cache;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accept(Lsun/security/util/Cache$CacheVisitor;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCapacity(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeout(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ObjectIdentifier$HugeOidNotSupportedByOldJDK;": {"fields": {"serialVersionUID:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "theOne:Lsun/security/util/ObjectIdentifier$HugeOidNotSupportedByOldJDK;": {"value": null, "other": [".field", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/util/ObjectIdentifier;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x78b20eec64177f2eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "componentLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "components:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "componentsCalculated:Z": {"value": null, "other": [".field", "private", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoding:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stringForm:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile", "transient"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "(Lsun/security/util/DerInputBuffer;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "check([B)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkCount(I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkFirstComponent(I)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkFirstComponent(Ljava/math/BigInteger;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOtherComponent(II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkOtherComponent(ILjava/math/BigInteger;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSecondComponent(II)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "checkSecondComponent(ILjava/math/BigInteger;)V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "init([II)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "newInternal([I)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "pack([BIIII)[B": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pack7Oid(I[BI)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pack7Oid(Ljava/math/BigInteger;[BI)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pack7Oid([BII[BI)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pack8([BII[BI)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Lsun/security/util/ObjectIdentifier;)Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toIntArray()[I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/util/PropertyExpander$ExpandException;": {"fields": {"serialVersionUID:J": {"value": "-0x6e3778281321bb26L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/PropertyExpander;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "expand(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "expand(Ljava/lang/String;Z)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/Resources;": {"fields": {"contents:[[Ljava/lang/Object;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContents()[[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/util/ResourcesMgr$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ResourcesMgr$2;": {"fields": {"val$altBundleName:Ljava/lang/String;": {"value": null, "other": [".field", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/util/ResourceBundle;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/ResourcesMgr;": {"fields": {"altBundle:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bundle:Ljava/util/ResourceBundle;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getString(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/SecurityConstants;": {"fields": {"ACCESS_PERMISSION:Ljava/lang/reflect/ReflectPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL_PERMISSION:Ljava/security/AllPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CHECK_MEMBER_ACCESS_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CREATE_ACC_PERMISSION:Ljava/security/SecurityPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CREATE_CLASSLOADER_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "FILE_DELETE_ACTION:Ljava/lang/String;": {"value": "\"delete\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_EXECUTE_ACTION:Ljava/lang/String;": {"value": "\"execute\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_READLINK_ACTION:Ljava/lang/String;": {"value": "\"readlink\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_READ_ACTION:Ljava/lang/String;": {"value": "\"read\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FILE_WRITE_ACTION:Ljava/lang/String;": {"value": "\"write\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_CLASSLOADER_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "GET_COMBINER_PERMISSION:Ljava/security/SecurityPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_COOKIEHANDLER_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_PD_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_POLICY_PERMISSION:Ljava/security/SecurityPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_PROXYSELECTOR_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_RESPONSECACHE_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GET_STACK_TRACE_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LOCAL_LISTEN_PERMISSION:Ljava/net/SocketPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MODIFY_THREADGROUP_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "MODIFY_THREAD_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "PROPERTY_READ_ACTION:Ljava/lang/String;": {"value": "\"read\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPERTY_RW_ACTION:Ljava/lang/String;": {"value": "\"read,write\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROPERTY_WRITE_ACTION:Ljava/lang/String;": {"value": "\"write\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PROVIDER_VER:Ljava/lang/String;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REFLECTION_FACTORY_ACCESS_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SET_COOKIEHANDLER_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SET_PROXYSELECTOR_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SET_RESPONSECACHE_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SET_SOCKETIMPL_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCKET_ACCEPT_ACTION:Ljava/lang/String;": {"value": "\"accept\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCKET_CONNECT_ACCEPT_ACTION:Ljava/lang/String;": {"value": "\"connect,accept\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCKET_CONNECT_ACTION:Ljava/lang/String;": {"value": "\"connect\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCKET_LISTEN_ACTION:Ljava/lang/String;": {"value": "\"listen\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SOCKET_RESOLVE_ACTION:Ljava/lang/String;": {"value": "\"resolve\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SPECIFY_HANDLER_PERMISSION:Ljava/net/NetPermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "STOP_THREAD_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBCLASS_IMPLEMENTATION_PERMISSION:Ljava/lang/RuntimePermission;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/util/SignatureFileVerifier;": {"fields": {"ATTR_DIGEST:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DIGEST_PRIMITIVE_SET:Ljava/util/Set;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "JAR_DISABLED_CHECK:Lsun/security/util/DisabledAlgorithmConstraints;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexc:[C": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "block:Lsun/security/pkcs/PKCS7;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "certificateFactory:Ljava/security/cert/CertificateFactory;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createdDigests:Ljava/util/HashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "md:Lsun/security/util/ManifestDigester;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sfBytes:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "signerCache:Ljava/util/ArrayList;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "workaround:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/ArrayList;Lsun/security/util/ManifestDigester;Ljava/lang/String;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "contains([Ljava/security/CodeSigner;Ljava/security/CodeSigner;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getDigest(Ljava/lang/String;)Ljava/security/MessageDigest;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getSigners([Lsun/security/pkcs/SignerInfo;Lsun/security/pkcs/PKCS7;)[Ljava/security/CodeSigner;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isBlockOrSF(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "isSigningRelated(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSubSet([Ljava/security/CodeSigner;[Ljava/security/CodeSigner;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "matches([Ljava/security/CodeSigner;[Ljava/security/CodeSigner;[Ljava/security/CodeSigner;)Z": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "processImpl(Ljava/util/Hashtable;Ljava/util/List;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toHex([B)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifyManifestHash(Ljava/util/jar/Manifest;Lsun/security/util/ManifestDigester;Ljava/util/List;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifyManifestMainAttrs(Ljava/util/jar/Manifest;Lsun/security/util/ManifestDigester;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "verifySection(Ljava/util/jar/Attributes;Ljava/lang/String;Lsun/security/util/ManifestDigester;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "needSignatureFile(Ljava/lang/String;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "needSignatureFileBytes()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "process(Ljava/util/Hashtable;Ljava/util/List;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSignatureFile([B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "updateSigners([Ljava/security/CodeSigner;Ljava/util/Hashtable;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/security/x509/AVA;": {"fields": {"DEFAULT:I": {"value": "0x1", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRESERVE_OLD_DC_ENCODING:Z": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC1779:I": {"value": "0x2", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RFC2253:I": {"value": "0x3", "other": [".field", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "escapedDefault:Ljava/lang/String;": {"value": "\",+<>;\\\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hexDigits:Ljava/lang/String;": {"value": "\"0123456789ABCDEF\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specialChars1779:Ljava/lang/String;": {"value": "\",=\\n+<>#;\\\\\\\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specialChars2253:Ljava/lang/String;": {"value": "\",=+<>#;\\\\\\\"\"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "specialCharsDefault:Ljava/lang/String;": {"value": "\",=\\n+<>#;\\\\\\\" \"", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Lsun/security/util/DerValue;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/Reader;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/Reader;I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/Reader;ILjava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/io/Reader;Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEmbeddedHexPair(ILjava/io/Reader;)Ljava/lang/Byte;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getEmbeddedHexString(Ljava/util/List;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isDerString(Lsun/security/util/DerValue;Z)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isTerminator(II)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseHexString(Ljava/io/Reader;I)Lsun/security/util/DerValue;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseQuotedString(Ljava/io/Reader;Ljava/lang/StringBuilder;)Lsun/security/util/DerValue;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseString(Ljava/io/Reader;IILjava/lang/StringBuilder;)Lsun/security/util/DerValue;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "readChar(Ljava/io/Reader;Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toKeyword(ILjava/util/Map;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toKeywordValueString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trailingSpace(Ljava/io/Reader;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDerValue()Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getObjectIdentifier()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getValueString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasRFC2253Keyword()Z": {"other": [".method"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toRFC1779String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC1779String(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253CanonicalString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toRFC2253String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253String(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/AVAComparator;": {"fields": {"INSTANCE:Ljava/util/Comparator;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance()Ljava/util/Comparator;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(Ljava/lang/Object;Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compare(Lsun/security/x509/AVA;Lsun/security/x509/AVA;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/AVAKeyword;": {"fields": {"keywordMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "oidMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "keyword:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "rfc1779Compliant:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rfc2253Compliant:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/security/util/ObjectIdentifier;ZZ)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeyword(Lsun/security/util/ObjectIdentifier;I)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeyword(Lsun/security/util/ObjectIdentifier;ILjava/util/Map;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID(Ljava/lang/String;ILjava/util/Map;)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hasKeyword(Lsun/security/util/ObjectIdentifier;I)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isCompliant(I)Z": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/x509/AccessDescription;": {"fields": {"Ad_CAISSUERS_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "Ad_CAREPOSITORY_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "Ad_OCSP_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "Ad_TIMESTAMPING_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accessLocation:Lsun/security/x509/GeneralName;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accessMethod:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Lsun/security/x509/GeneralName;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAccessLocation()Lsun/security/x509/GeneralName;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getAccessMethod()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/AlgorithmId;": {"fields": {"AES_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DH_PKIX_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DH_PKIX_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DH_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DH_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DSA_OIW_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DSA_OIW_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DSA_PKIX_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "ECDH_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EC_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "MD2_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "MD5_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "RSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "RSA_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "RSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHA224_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SHA256_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SHA384_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SHA512_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SHA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "dsaWithSHA1_PKIX_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "initOidTableVersion:I": {"value": "0x0", "other": [".field", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "md2WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "md2WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "md5WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "md5WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameTable:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "oidTable:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "pbeWithMD5AndDES_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pbeWithMD5AndRC2_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pbeWithSHA1AndDES_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pbeWithSHA1AndDESede_oid:Lsun/security/util/ObjectIdentifier;": {"value": "null", "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pbeWithSHA1AndRC2_40_oid:Lsun/security/util/ObjectIdentifier;": {"value": "null", "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pbeWithSHA1AndRC2_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "0x640067c6d62263e5L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "sha1WithDSA_OIW_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha1WithDSA_OIW_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha1WithDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha1WithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha1WithRSAEncryption_OIW_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha1WithRSAEncryption_OIW_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha1WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha1WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "sha224WithDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha224WithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha224WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha224WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha256WithDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha256WithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha256WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha256WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha384WithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha384WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha384WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha512WithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sha512WithRSAEncryption_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "sha512WithRSAEncryption_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "shaWithDSA_OIW_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "shaWithDSA_OIW_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "specifiedWithECDSA_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "algParams:Ljava/security/AlgorithmParameters;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "constructedFromDer:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "params:Lsun/security/util/DerValue;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "(Lsun/security/util/ObjectIdentifier;Ljava/security/AlgorithmParameters;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Lsun/security/util/DerValue;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "algOID(Ljava/lang/String;)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/AlgorithmId;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "get(Ljava/security/AlgorithmParameters;)Lsun/security/x509/AlgorithmId;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAlgorithmId(Ljava/lang/String;)Lsun/security/x509/AlgorithmId;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDigAlgFromSigAlg(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEncAlgFromSigAlg(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "makeSigAlg(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oid([I)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "private", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)Lsun/security/x509/AlgorithmId;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "reinitializeMappingTableLocked()V": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "decodeParams()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode()[B": {"other": [".method", "public", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Lsun/security/util/ObjectIdentifier;)Z": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Lsun/security/x509/AlgorithmId;)Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getEncodedParams()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": "test-api"}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getParameters()Ljava/security/AlgorithmParameters;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "paramsToString()Ljava/lang/String;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/AttributeNameEnumeration;": {"fields": {"serialVersionUID:J": {"value": "-0x5433e0c0963cca7eL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}}}, "Lsun/security/x509/AuthorityInfoAccessExtension;": {"fields": {"DESCRIPTIONS:Ljava/lang/String;": {"value": "\"descriptions\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.AuthorityInfoAccess\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"AuthorityInfoAccess\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accessDescriptions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAccessDescriptions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/AuthorityKeyIdentifierExtension;": {"fields": {"AUTH_NAME:Ljava/lang/String;": {"value": "\"auth_name\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.AuthorityKeyIdentifier\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_ID:Ljava/lang/String;": {"value": "\"key_id\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"AuthorityKeyIdentifier\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERIAL_NUMBER:Ljava/lang/String;": {"value": "\"serial_number\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ID:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_NAMES:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_SERIAL_NUM:B": {"value": "0x2t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "id:Lsun/security/x509/KeyIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialNum:Lsun/security/x509/SerialNumber;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/KeyIdentifier;Lsun/security/x509/GeneralNames;Lsun/security/x509/SerialNumber;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodedKeyIdentifier()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/BasicConstraintsExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.BasicConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IS_CA:Ljava/lang/String;": {"value": "\"is_ca\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"BasicConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PATH_LEN:Ljava/lang/String;": {"value": "\"path_len\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ca:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pathLen:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;ZI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CRLDistributionPointsExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.CRLDistributionPoints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"CRLDistributionPoints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POINTS:Ljava/lang/String;": {"value": "\"points\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "distributionPoints:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Ljava/lang/Boolean;Ljava/lang/Object;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;ZLjava/util/List;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZLjava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/io/OutputStream;Lsun/security/util/ObjectIdentifier;Z)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CRLExtensions;": {"fields": {"PARAMS:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsupportedCritExt:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "init(Lsun/security/util/DerInputStream;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseExtension(Lsun/security/x509/Extension;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;Z)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Lsun/security/x509/Extension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAllExtensions()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CRLNumberExtension;": {"fields": {"LABEL:Ljava/lang/String;": {"value": "\"CRL Number\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"CRLNumber\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUMBER:Ljava/lang/String;": {"value": "\"value\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crlNumber:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionLabel:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionName:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Ljava/lang/Boolean;Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;ZLjava/math/BigInteger;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Ljava/io/OutputStream;Lsun/security/util/ObjectIdentifier;Z)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CRLReasonCodeExtension;": {"fields": {"NAME:Ljava/lang/String;": {"value": "\"CRLReasonCode\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REASON:Ljava/lang/String;": {"value": "\"reason\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values:[Ljava/security/cert/CRLReason;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reasonCode:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReasonCode()Ljava/security/cert/CRLReason;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertAttrSet;": {"fields": {}, "methods": {"delete(Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateAlgorithmId;": {"fields": {"ALGORITHM:Ljava/lang/String;": {"value": "\"algorithm\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.algorithmID\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"algorithmID\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "algId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/AlgorithmId;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateExtensions;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"extensions\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PARAMS:[Ljava/lang/Class;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unparseableExtensions:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsupportedCritExt:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "init(Lsun/security/util/DerInputStream;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseExtension(Lsun/security/x509/Extension;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;Z)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/Extension;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getAllExtensions()Ljava/util/Collection;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtension(Ljava/lang/String;)Lsun/security/x509/Extension;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNameByOid(Lsun/security/util/ObjectIdentifier;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnparseableExtensions()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateIssuerExtension;": {"fields": {"ISSUER:Ljava/lang/String;": {"value": "\"issuer\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"CertificateIssuer\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateIssuerName;": {"fields": {"DN_NAME:Ljava/lang/String;": {"value": "\"dname\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DN_PRINCIPAL:Ljava/lang/String;": {"value": "\"x500principal\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.issuer\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"issuer\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dnName:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dnPrincipal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificatePoliciesExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.CertificatePolicies\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"CertificatePolicies\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLICIES:Ljava/lang/String;": {"value": "\"policies\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certPolicies:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificatePolicyId;": {"fields": {"id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentifier()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificatePolicyMap;": {"fields": {"issuerDomain:Lsun/security/x509/CertificatePolicyId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subjectDomain:Lsun/security/x509/CertificatePolicyId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/CertificatePolicyId;Lsun/security/x509/CertificatePolicyId;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerIdentifier()Lsun/security/x509/CertificatePolicyId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectIdentifier()Lsun/security/x509/CertificatePolicyId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificatePolicySet;": {"fields": {"ids:Ljava/util/Vector;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Vector;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertPolicyIds()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateSerialNumber;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.serialNumber\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"serialNumber\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUMBER:Ljava/lang/String;": {"value": "\"number\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serial:Lsun/security/x509/SerialNumber;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/SerialNumber;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateSubjectName;": {"fields": {"DN_NAME:Ljava/lang/String;": {"value": "\"dname\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DN_PRINCIPAL:Ljava/lang/String;": {"value": "\"x500principal\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.subject\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"subject\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dnName:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dnPrincipal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateValidity;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.validity\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"validity\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_AFTER:Ljava/lang/String;": {"value": "\"notAfter\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_BEFORE:Ljava/lang/String;": {"value": "\"notBefore\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "YR_2050:J": {"value": "0x24bd0146400L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "notAfter:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "notBefore:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Date;Ljava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "construct(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valid()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valid(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/DNSName;": {"fields": {"alpha:Ljava/lang/String;": {"value": "\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "alphaDigitsAndHyphen:Ljava/lang/String;": {"value": "\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "digitsAndHyphen:Ljava/lang/String;": {"value": "\"0123456789-\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateX509Key;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.key\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY:Ljava/lang/String;": {"value": "\"value\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"key\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "key:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/security/PublicKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/CertificateVersion;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.version\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"version\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "V1:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "V2:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "V3:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VERSION:Ljava/lang/String;": {"value": "\"number\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "version:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "construct(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVersion()I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compare(I)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/DeltaCRLIndicatorExtension;": {"fields": {"LABEL:Ljava/lang/String;": {"value": "\"Base CRL Number\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"DeltaCRLIndicator\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/DistributionPoint;": {"fields": {"AA_COMPROMISE:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AFFILIATION_CHANGED:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CA_COMPROMISE:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERTIFICATE_HOLD:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CESSATION_OF_OPERATION:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_COMPROMISE:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVILEGE_WITHDRAWN:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REASON_STRINGS:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUPERSEDED:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_DIST_PT:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_FULL_NAME:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ISSUER:B": {"value": "0x2t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_REASONS:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_REL_NAME:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "crlIssuer:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullName:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reasonFlags:[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "relativeName:Lsun/security/x509/RDN;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNames;[ZLsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/RDN;[ZLsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reasonToString(I)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCRLIssuer()Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFullName()Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getReasonFlags()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRelativeName()Lsun/security/x509/RDN;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/EDIPartyName;": {"fields": {"TAG_ASSIGNER:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_PARTYNAME:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "assigner:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "party:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAssignerName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPartyName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/DistributionPointName;": {"fields": {"TAG_FULL_NAME:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_RELATIVE_NAME:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fullName:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "relativeName:Lsun/security/x509/RDN;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/RDN;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getFullName()Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRelativeName()Lsun/security/x509/RDN;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/ExtendedKeyUsageExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.ExtendedKeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"ExtendedKeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCSPSigningOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "USAGES:Ljava/lang/String;": {"value": "\"usages\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "anyExtendedKeyUsageOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clientAuthOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "codeSigningOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emailProtectionOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ipsecEndSystemOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ipsecTunnelOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ipsecUserOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serverAuthOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "timeStampingOidData:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keyUsages:Ljava/util/Vector;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/util/Vector;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Vector;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/Vector;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtendedKeyUsage()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/Extension;": {"fields": {"hashMagic:I": {"value": "0x1f", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "critical:Z": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionId:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionValue:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;Z[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/Extension;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "newExtension(Lsun/security/util/ObjectIdentifier;Z[B)Lsun/security/x509/Extension;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensionId()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getExtensionValue()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getId()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getValue()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isCritical()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/FreshestCRLExtension;": {"fields": {"NAME:Ljava/lang/String;": {"value": "\"FreshestCRL\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/GeneralName;": {"fields": {"name:Lsun/security/x509/GeneralNameInterface;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNameInterface;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Lsun/security/x509/GeneralNameInterface;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/GeneralNameInterface;": {"fields": {"NAME_ANY:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_DIFF_TYPE:I": {"value": "-0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_DIRECTORY:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_DNS:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_EDI:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_IP:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_MATCH:I": {"value": "0x0", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_NARROWS:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_OID:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_RFC822:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_SAME_TYPE:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_URI:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_WIDENS:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_X400:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtreeDepth()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/GeneralNames;": {"fields": {"names:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "add(Lsun/security/x509/GeneralName;)Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Lsun/security/x509/GeneralName;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/GeneralSubtree;": {"fields": {"MIN_DEFAULT:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAG_MAX:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAG_MIN:B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "maximum:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimum:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "name:Lsun/security/x509/GeneralName;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralName;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getMaximum()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMinimum()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Lsun/security/x509/GeneralName;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/GeneralSubtrees;": {"fields": {"NAME_DIFF_TYPE:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_MATCH:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_NARROWS:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_SAME_TYPE:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "NAME_WIDENS:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "trees:Ljava/util/List;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralSubtrees;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createWidestSubtree(Lsun/security/x509/GeneralNameInterface;)Lsun/security/x509/GeneralSubtree;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGeneralNameInterface(I)Lsun/security/x509/GeneralNameInterface;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getGeneralNameInterface(Lsun/security/x509/GeneralSubtree;)Lsun/security/x509/GeneralNameInterface;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minimize()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "add(Lsun/security/x509/GeneralSubtree;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "contains(Lsun/security/x509/GeneralSubtree;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(I)Lsun/security/x509/GeneralSubtree;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "intersect(Lsun/security/x509/GeneralSubtrees;)Lsun/security/x509/GeneralSubtrees;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator()Ljava/util/Iterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reduce(Lsun/security/x509/GeneralSubtrees;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "remove(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "trees()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "union(Lsun/security/x509/GeneralSubtrees;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/IPAddressName;": {"fields": {"MASKSIZE:I": {"value": "0x10", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "address:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIPv4:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseIPv4(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseIPv6(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBytes()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/InhibitAnyPolicyExtension;": {"fields": {"AnyPolicy_Id:Lsun/security/util/ObjectIdentifier;": {"value": "null", "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.InhibitAnyPolicy\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"InhibitAnyPolicy\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SKIP_CERTS:Ljava/lang/String;": {"value": "\"skip_certs\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "debug:Lsun/security/util/Debug;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "skipCerts:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/InvalidityDateExtension;": {"fields": {"DATE:Ljava/lang/String;": {"value": "\"date\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"InvalidityDate\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(ZLjava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toImpl(Ljava/security/cert/Extension;)Lsun/security/x509/InvalidityDateExtension;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/IssuerAlternativeNameExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.IssuerAlternativeName\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_NAME:Ljava/lang/String;": {"value": "\"issuer_name\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"IssuerAlternativeName\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/IssuingDistributionPointExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.IssuingDistributionPoint\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INDIRECT_CRL:Ljava/lang/String;": {"value": "\"indirect_crl\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"IssuingDistributionPoint\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_ATTRIBUTE_CERTS:Ljava/lang/String;": {"value": "\"only_attribute_certs\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_CA_CERTS:Ljava/lang/String;": {"value": "\"only_ca_certs\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ONLY_USER_CERTS:Ljava/lang/String;": {"value": "\"only_user_certs\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POINT:Ljava/lang/String;": {"value": "\"point\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REASONS:Ljava/lang/String;": {"value": "\"reasons\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_DISTRIBUTION_POINT:B": {"value": "0x0t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_INDIRECT_CRL:B": {"value": "0x4t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ONLY_ATTRIBUTE_CERTS:B": {"value": "0x5t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ONLY_CA_CERTS:B": {"value": "0x2t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ONLY_SOME_REASONS:B": {"value": "0x3t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_ONLY_USER_CERTS:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "distributionPoint:Lsun/security/x509/DistributionPointName;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasOnlyAttributeCerts:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasOnlyCACerts:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasOnlyUserCerts:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isIndirectCRL:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revocationReasons:Lsun/security/x509/ReasonFlags;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/DistributionPointName;Lsun/security/x509/ReasonFlags;ZZZZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/KeyIdentifier;": {"fields": {"octetString:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/PublicKey;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIdentifier()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/KeyUsageExtension;": {"fields": {"CRL_SIGN:Ljava/lang/String;": {"value": "\"crl_sign\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DATA_ENCIPHERMENT:Ljava/lang/String;": {"value": "\"data_encipherment\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DECIPHER_ONLY:Ljava/lang/String;": {"value": "\"decipher_only\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DIGITAL_SIGNATURE:Ljava/lang/String;": {"value": "\"digital_signature\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ENCIPHER_ONLY:Ljava/lang/String;": {"value": "\"encipher_only\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.KeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_AGREEMENT:Ljava/lang/String;": {"value": "\"key_agreement\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_CERTSIGN:Ljava/lang/String;": {"value": "\"key_certsign\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_ENCIPHERMENT:Ljava/lang/String;": {"value": "\"key_encipherment\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"KeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NON_REPUDIATION:Ljava/lang/String;": {"value": "\"non_repudiation\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitString:[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/BitArray;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(IZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getBits()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/NameConstraintsExtension;": {"fields": {"EXCLUDED_SUBTREES:Ljava/lang/String;": {"value": "\"excluded_subtrees\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.NameConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"NameConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PERMITTED_SUBTREES:Ljava/lang/String;": {"value": "\"permitted_subtrees\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_EXCLUDED:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "TAG_PERMITTED:B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "excluded:Lsun/security/x509/GeneralSubtrees;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasMax:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hasMin:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "minMaxValid:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "permitted:Lsun/security/x509/GeneralSubtrees;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralSubtrees;Lsun/security/x509/GeneralSubtrees;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "calcMinMax()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/GeneralSubtrees;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "merge(Lsun/security/x509/NameConstraintsExtension;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify(Lsun/security/x509/GeneralNameInterface;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyRFC822SpecialCase(Lsun/security/x509/X500Name;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/NetscapeCertTypeExtension$MapEntry;": {"fields": {"mName:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mPosition:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;I)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/NetscapeCertTypeExtension;": {"fields": {"CertType_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.NetscapeCertType\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"NetscapeCertType\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NetscapeCertType_Id:Lsun/security/util/ObjectIdentifier;": {"value": "null", "other": [".field", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OBJECT_SIGNING:Ljava/lang/String;": {"value": "\"object_signing\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OBJECT_SIGNING_CA:Ljava/lang/String;": {"value": "\"object_signing_ca\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SSL_CA:Ljava/lang/String;": {"value": "\"ssl_ca\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SSL_CLIENT:Ljava/lang/String;": {"value": "\"ssl_client\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SSL_SERVER:Ljava/lang/String;": {"value": "\"ssl_server\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_MIME:Ljava/lang/String;": {"value": "\"s_mime\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "S_MIME_CA:Ljava/lang/String;": {"value": "\"s_mime_ca\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mAttributeNames:Ljava/util/Vector;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mMapData:[Lsun/security/x509/NetscapeCertTypeExtension$MapEntry;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitString:[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPosition(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(IZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeyUsageMappedBits()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/OCSPNoCheckExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.OCSPNoCheck\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"OCSPNoCheck\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/OIDMap$OIDInfo;": {"fields": {"clazz:Ljava/lang/Class;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Lsun/security/util/ObjectIdentifier;Ljava/lang/Class;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getClazz()Ljava/lang/Class;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/OIDMap;": {"fields": {"AUTH_INFO_ACCESS:Ljava/lang/String;": {"value": "\"x509.info.extensions.AuthorityInfoAccess\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AUTH_KEY_IDENTIFIER:Ljava/lang/String;": {"value": "\"x509.info.extensions.AuthorityKeyIdentifier\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BASIC_CONSTRAINTS:Ljava/lang/String;": {"value": "\"x509.info.extensions.BasicConstraints\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERT_ISSUER:Ljava/lang/String;": {"value": "\"x509.info.extensions.CertificateIssuer\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERT_POLICIES:Ljava/lang/String;": {"value": "\"x509.info.extensions.CertificatePolicies\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRL_DIST_POINTS:Ljava/lang/String;": {"value": "\"x509.info.extensions.CRLDistributionPoints\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRL_NUMBER:Ljava/lang/String;": {"value": "\"x509.info.extensions.CRLNumber\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRL_REASON:Ljava/lang/String;": {"value": "\"x509.info.extensions.CRLReasonCode\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DELTA_CRL_INDICATOR:Ljava/lang/String;": {"value": "\"x509.info.extensions.DeltaCRLIndicator\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXT_KEY_USAGE:Ljava/lang/String;": {"value": "\"x509.info.extensions.ExtendedKeyUsage\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FRESHEST_CRL:Ljava/lang/String;": {"value": "\"x509.info.extensions.FreshestCRL\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHIBIT_ANY_POLICY:Ljava/lang/String;": {"value": "\"x509.info.extensions.InhibitAnyPolicy\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_ALT_NAME:Ljava/lang/String;": {"value": "\"x509.info.extensions.IssuerAlternativeName\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUING_DIST_POINT:Ljava/lang/String;": {"value": "\"x509.info.extensions.IssuingDistributionPoint\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_USAGE:Ljava/lang/String;": {"value": "\"x509.info.extensions.KeyUsage\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME_CONSTRAINTS:Ljava/lang/String;": {"value": "\"x509.info.extensions.NameConstraints\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NETSCAPE_CERT:Ljava/lang/String;": {"value": "\"x509.info.extensions.NetscapeCertType\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NetscapeCertType_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCSPNOCHECK:Ljava/lang/String;": {"value": "\"x509.info.extensions.OCSPNoCheck\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLICY_CONSTRAINTS:Ljava/lang/String;": {"value": "\"x509.info.extensions.PolicyConstraints\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "POLICY_MAPPINGS:Ljava/lang/String;": {"value": "\"x509.info.extensions.PolicyMappings\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVATE_KEY_USAGE:Ljava/lang/String;": {"value": "\"x509.info.extensions.PrivateKeyUsage\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ROOT:Ljava/lang/String;": {"value": "\"x509.info.extensions\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT_INFO_ACCESS:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectInfoAccess\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUB_ALT_NAME:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectAlternativeName\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUB_KEY_IDENTIFIER:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectKeyIdentifier\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "oidMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addAttribute(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Class;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addInternal(Ljava/lang/String;Lsun/security/util/ObjectIdentifier;Ljava/lang/Class;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getClass(Ljava/lang/String;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getClass(Lsun/security/util/ObjectIdentifier;)Ljava/lang/Class;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getName(Lsun/security/util/ObjectIdentifier;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID(Ljava/lang/String;)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/OIDName;": {"fields": {"oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/OtherName;": {"fields": {"TAG_VALUE:B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "gni:Lsun/security/x509/GeneralNameInterface;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "myhash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameValue:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/ObjectIdentifier;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGNI(Lsun/security/util/ObjectIdentifier;[B)Lsun/security/x509/GeneralNameInterface;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNameValue()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOID()Lsun/security/util/ObjectIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/PKIXExtensions;": {"fields": {"AuthInfoAccess_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AuthInfoAccess_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AuthorityKey_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AuthorityKey_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BasicConstraints_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BasicConstraints_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRLDistributionPoints_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRLDistributionPoints_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRLNumber_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CRLNumber_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CertificateIssuer_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "CertificateIssuer_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CertificatePolicies_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CertificatePolicies_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DeltaCRLIndicator_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DeltaCRLIndicator_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ExtendedKeyUsage_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ExtendedKeyUsage_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FreshestCRL_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FreshestCRL_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HoldInstructionCode_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HoldInstructionCode_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "InhibitAnyPolicy_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "InhibitAnyPolicy_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "InvalidityDate_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "InvalidityDate_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IssuerAlternativeName_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IssuerAlternativeName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IssuingDistributionPoint_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IssuingDistributionPoint_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KeyUsage_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KeyUsage_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NameConstraints_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NameConstraints_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCSPNoCheck_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCSPNoCheck_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PolicyConstraints_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PolicyConstraints_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PolicyMappings_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PolicyMappings_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PrivateKeyUsage_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PrivateKeyUsage_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ReasonCode_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ReasonCode_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectAlternativeName_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectAlternativeName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectDirectoryAttributes_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectDirectoryAttributes_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectInfoAccess_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectInfoAccess_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectKey_Id:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SubjectKey_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/PolicyConstraintsExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.PolicyConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INHIBIT:Ljava/lang/String;": {"value": "\"inhibit\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"PolicyConstraints\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REQUIRE:Ljava/lang/String;": {"value": "\"require\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_INHIBIT:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_REQUIRE:B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "inhibit:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "require:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;II)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/PolicyInformation;": {"fields": {"ID:Ljava/lang/String;": {"value": "\"id\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"PolicyInformation\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "QUALIFIERS:Ljava/lang/String;": {"value": "\"qualifiers\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyIdentifier:Lsun/security/x509/CertificatePolicyId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "policyQualifiers:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/CertificatePolicyId;Ljava/util/Set;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyIdentifier()Lsun/security/x509/CertificatePolicyId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyQualifiers()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/PolicyMappingsExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.PolicyMappings\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAP:Ljava/lang/String;": {"value": "\"map\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"PolicyMappings\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "maps:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/PrivateKeyUsageExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.PrivateKeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"PrivateKeyUsage\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_AFTER:Ljava/lang/String;": {"value": "\"not_after\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOT_BEFORE:Ljava/lang/String;": {"value": "\"not_before\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_AFTER:B": {"value": "0x1t", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TAG_BEFORE:B": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "notAfter:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "notBefore:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/Date;Ljava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "valid()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valid(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/RDN;": {"fields": {"assertion:[Lsun/security/x509/AVA;": {"value": null, "other": [".field", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "avaList:Ljava/util/List;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalString:Ljava/lang/String;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Lsun/security/x509/AVA;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Lsun/security/x509/AVA;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253StringInternal(ZLjava/util/Map;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "avas()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findAttribute(Lsun/security/util/ObjectIdentifier;)Lsun/security/util/DerValue;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC1779String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC1779String(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253String()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253String(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toRFC2253String(Z)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/RFC822Name;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseName(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/ReasonFlags;": {"fields": {"AA_COMPROMISE:Ljava/lang/String;": {"value": "\"aa_compromise\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AFFILIATION_CHANGED:Ljava/lang/String;": {"value": "\"affiliation_changed\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CA_COMPROMISE:Ljava/lang/String;": {"value": "\"ca_compromise\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CERTIFICATE_HOLD:Ljava/lang/String;": {"value": "\"certificate_hold\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CESSATION_OF_OPERATION:Ljava/lang/String;": {"value": "\"cessation_of_operation\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_COMPROMISE:Ljava/lang/String;": {"value": "\"key_compromise\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAMES:[Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVILEGE_WITHDRAWN:Ljava/lang/String;": {"value": "\"privilege_withdrawn\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUPERSEDED:Ljava/lang/String;": {"value": "\"superseded\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNUSED:Ljava/lang/String;": {"value": "\"unused\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "bitString:[Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/BitArray;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([Z)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSet(I)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name2Index(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(IZ)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFlags()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/SerialNumber;": {"fields": {"serialNum:Ljava/math/BigInteger;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "construct(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/SubjectAlternativeNameExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectAlternativeName\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"SubjectAlternativeName\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT_NAME:Ljava/lang/String;": {"value": "\"subject_name\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Lsun/security/x509/GeneralNames;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/Boolean;Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/GeneralNames;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/GeneralNames;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/SubjectInfoAccessExtension;": {"fields": {"DESCRIPTIONS:Ljava/lang/String;": {"value": "\"descriptions\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectInfoAccess\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"SubjectInfoAccess\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "accessDescriptions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/List;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAccessDescriptions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/SubjectKeyIdentifierExtension;": {"fields": {"IDENT:Ljava/lang/String;": {"value": "\"x509.info.extensions.SubjectKeyIdentifier\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_ID:Ljava/lang/String;": {"value": "\"key_id\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"SubjectKeyIdentifier\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "id:Lsun/security/x509/KeyIdentifier;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Boolean;Ljava/lang/Object;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "encodeThis()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Lsun/security/x509/KeyIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/URIName;": {"fields": {"host:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hostDNS:Lsun/security/x509/DNSName;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hostIP:Lsun/security/x509/IPAddressName;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "uri:Ljava/net/URI;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/net/URI;Ljava/lang/String;Lsun/security/x509/DNSName;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nameConstraint(Lsun/security/util/DerValue;)Lsun/security/x509/URIName;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getHost()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHostObject()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getScheme()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getURI()Ljava/net/URI;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/UniqueIdentity;": {"fields": {"id:Lsun/security/util/BitArray;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/BitArray;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;B)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getId()[Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/UnparseableExtension;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "why:Ljava/lang/Throwable;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/x509/Extension;Ljava/lang/Throwable;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X400Address;": {"fields": {"nameValue:[B": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X500Name$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()[Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/X500Name;": {"fields": {"DNQUALIFIER_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DNQUALIFIER_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "DOMAIN_COMPONENT_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "DOMAIN_COMPONENT_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "GENERATIONQUALIFIER_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GENERATIONQUALIFIER_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "GIVENNAME_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "GIVENNAME_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "INITIALS_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "INITIALS_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SERIALNUMBER_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SERIALNUMBER_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "SURNAME_DATA:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SURNAME_OID:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "commonName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "commonName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "countryName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "countryName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "internedOIDs:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ipAddress_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ipAddress_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "localityName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "localityName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "orgName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "orgName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "orgUnitName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "orgUnitName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "principalConstructor:Ljava/lang/reflect/Constructor;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "principalField:Ljava/lang/reflect/Field;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stateName_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "stateName_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "streetAddress_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "streetAddress_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "title_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "title_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "userid_data:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "userid_oid:Lsun/security/util/ObjectIdentifier;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "allAvaList:Ljava/util/List;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalDn:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dn:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "encoded:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "names:[Lsun/security/x509/RDN;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rdnList:Ljava/util/List;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rfc1779Dn:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "rfc2253Dn:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "x500Principal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerInputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([Lsun/security/x509/RDN;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "asX500Name(Ljavax/security/auth/x500/X500Principal;)Lsun/security/x509/X500Name;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "checkNoNewLinesNorTabsAtBeginningOfDN(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "countQuotes(Ljava/lang/String;II)I": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "escaped(IILjava/lang/String;)Z": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "findAttribute(Lsun/security/util/ObjectIdentifier;)Lsun/security/util/DerValue;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateDN()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateRFC1779DN(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "generateRFC2253DN(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getString(Lsun/security/util/DerValue;)Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "intern(Lsun/security/util/ObjectIdentifier;)Lsun/security/util/ObjectIdentifier;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isWithinSubtree(Lsun/security/x509/X500Name;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseDER(Lsun/security/util/DerInputStream;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseDN(Ljava/lang/String;Ljava/util/Map;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseRFC2253DN(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "allAvas()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "asX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "avaSize()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "commonAncestor(Lsun/security/x509/X500Name;)Lsun/security/x509/X500Name;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "constrains(Lsun/security/x509/GeneralNameInterface;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emit(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "findMostSpecificAttribute(Lsun/security/util/ObjectIdentifier;)Lsun/security/util/DerValue;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCommonName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCountry()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDNQualifier()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDomain()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodedInternal()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGeneration()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGivenName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIP()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInitials()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocality()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getOrganization()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getOrganizationalUnit()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRFC1779Name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRFC1779Name(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRFC2253CanonicalName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRFC2253Name()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRFC2253Name(Ljava/util/Map;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getState()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSurname()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getType()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "rdns()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "size()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subtreeDepth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509AttributeName;": {"fields": {"SEPARATOR:C": {"value": "'.'", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "prefix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "suffix:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPrefix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSuffix()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/security/x509/X509CRLEntryImpl;": {"fields": {"YR_2050:J": {"value": "0x24bd0146400L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExplicit:Z": {"value": "false", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "certIssuer:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensions:Lsun/security/x509/CRLExtensions;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revocationDate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revokedCert:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialNumber:Lsun/security/x509/SerialNumber;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/math/BigInteger;Ljava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/math/BigInteger;Ljava/util/Date;Lsun/security/x509/CRLExtensions;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded0()[B": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationReason(Ljava/security/cert/X509CRLEntry;)Ljava/security/cert/CRLReason;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toImpl(Ljava/security/cert/X509CRLEntry;)Lsun/security/x509/X509CRLEntryImpl;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Lsun/security/x509/X509CRLEntryImpl;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificateIssuer()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getCertificateIssuerExtension()Lsun/security/x509/CertificateIssuerExtension;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtension(Lsun/security/util/ObjectIdentifier;)Lsun/security/x509/Extension;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getExtensionValue(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtensions()Ljava/util/Map;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNonCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getReasonCode()Ljava/lang/Integer;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRevocationDate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevocationReason()Ljava/security/cert/CRLReason;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasExtensions()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "setCertificateIssuer(Ljavax/security/auth/x500/X500Principal;Ljavax/security/auth/x500/X500Principal;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509CRLImpl;": {"fields": {"YR_2050:J": {"value": "0x24bd0146400L", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExplicit:Z": {"value": "true", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensions:Lsun/security/x509/CRLExtensions;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "infoSigAlgId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuer:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerPrincipal:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextUpdate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readOnly:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revokedList:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "revokedMap:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sigAlgId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signature:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "signedCRL:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "tbsCertList:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "thisUpdate:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifiedProvider:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifiedPublicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "version:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/io/InputStream;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;Ljava/util/Date;Ljava/util/Date;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;Ljava/util/Date;Ljava/util/Date;[Ljava/security/cert/X509CRLEntry;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X500Name;Ljava/util/Date;Ljava/util/Date;[Ljava/security/cert/X509CRLEntry;Lsun/security/x509/CRLExtensions;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCertIssuer(Lsun/security/x509/X509CRLEntryImpl;Ljavax/security/auth/x500/X500Principal;)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodedInternal(Ljava/security/cert/X509CRL;)[B": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerX500Principal(Ljava/security/cert/X509CRL;)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toImpl(Ljava/security/cert/X509CRL;)Lsun/security/x509/X509CRLImpl;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodeInfo(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAuthKeyId()Lsun/security/x509/KeyIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAuthKeyIdExtension()Lsun/security/x509/AuthorityKeyIdentifierExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBaseCRLNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLNumberExtension()Lsun/security/x509/CRLNumberExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDeltaCRLIndicatorExtension()Lsun/security/x509/DeltaCRLIndicatorExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncodedInternal()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getExtension(Lsun/security/util/ObjectIdentifier;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtensionValue(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAltNameExtension()Lsun/security/x509/IssuerAlternativeNameExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuingDistributionPointExtension()Lsun/security/x509/IssuingDistributionPointExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNextUpdate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNonCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificate(Ljava/math/BigInteger;)Ljava/security/cert/X509CRLEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificate(Ljava/security/cert/X509Certificate;)Ljava/security/cert/X509CRLEntry;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getRevokedCertificates()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgId()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTBSCertList()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getThisUpdate()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isRevoked(Ljava/security/cert/Certificate;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "sign(Ljava/security/PrivateKey;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sign(Ljava/security/PrivateKey;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509CRLImpl$X509IssuerSerial;": {"fields": {"hashcode:I": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuer:Ljavax/security/auth/x500/X500Principal;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serial:Ljava/math/BigInteger;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/security/cert/X509Certificate;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljavax/security/auth/x500/X500Principal;Ljava/math/BigInteger;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "compareTo(Ljava/lang/Object;)I": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "compareTo(Lsun/security/x509/X509CRLImpl$X509IssuerSerial;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuer()Ljavax/security/auth/x500/X500Principal;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSerial()Ljava/math/BigInteger;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509CertImpl;": {"fields": {"ALG_ID:Ljava/lang/String;": {"value": "\"algorithm\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AUTH_INFO_ACCESS_OID:Ljava/lang/String;": {"value": "\"1.3.6.1.5.5.7.1.1\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BASIC_CONSTRAINT_OID:Ljava/lang/String;": {"value": "\"2.5.29.19\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DOT:Ljava/lang/String;": {"value": "\".\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENDED_KEY_USAGE_OID:Ljava/lang/String;": {"value": "\"2.5.29.37\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFO:Ljava/lang/String;": {"value": "\"info\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_ALT_NAME_OID:Ljava/lang/String;": {"value": "\"2.5.29.18\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_DN:Ljava/lang/String;": {"value": "\"x509.info.issuer.dname\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY_USAGE_OID:Ljava/lang/String;": {"value": "\"2.5.29.15\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"x509\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUM_STANDARD_KEY_USAGE:I": {"value": "0x9", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PUBLIC_KEY:Ljava/lang/String;": {"value": "\"x509.info.key.value\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERIAL_ID:Ljava/lang/String;": {"value": "\"x509.info.serialNumber.number\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIG:Ljava/lang/String;": {"value": "\"x509.signature\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNATURE:Ljava/lang/String;": {"value": "\"signature\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIGNED_CERT:Ljava/lang/String;": {"value": "\"signed_cert\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SIG_ALG:Ljava/lang/String;": {"value": "\"x509.algorithm\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT_ALT_NAME_OID:Ljava/lang/String;": {"value": "\"2.5.29.17\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT_DN:Ljava/lang/String;": {"value": "\"x509.info.subject.dname\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VERSION:Ljava/lang/String;": {"value": "\"x509.info.version.number\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialVersionUID:J": {"value": "-0x2ffbe8ab06f69c16L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "algId:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "authInfoAccess:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extKeyUsage:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fingerprints:Ljava/util/concurrent/ConcurrentHashMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "info:Lsun/security/x509/X509CertInfo;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerAlternativeNames:Ljava/util/Collection;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "readOnly:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "signature:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "signedCert:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "subjectAlternativeNames:Ljava/util/Collection;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verificationResult:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifiedProvider:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifiedPublicKey:Ljava/security/PublicKey;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;[B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Lsun/security/x509/X509CertInfo;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "byte2hex(BLjava/lang/StringBuffer;)V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cloneAltNames(Ljava/util/Collection;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodedInternal(Ljava/security/cert/Certificate;)[B": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtendedKeyUsage(Ljava/security/cert/X509Certificate;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFingerprint(Ljava/lang/String;Ljava/security/cert/X509Certificate;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerAlternativeNames(Ljava/security/cert/X509Certificate;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerX500Principal(Ljava/security/cert/X509Certificate;)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectAlternativeNames(Ljava/security/cert/X509Certificate;)Ljava/util/Collection;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectX500Principal(Ljava/security/cert/X509Certificate;)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getX500Principal(Ljava/security/cert/X509Certificate;Z)Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSelfIssued(Ljava/security/cert/X509Certificate;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSelfSigned(Ljava/security/cert/X509Certificate;Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "makeAltNames(Lsun/security/x509/GeneralNames;)Ljava/util/Collection;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;[B)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toImpl(Ljava/security/cert/X509Certificate;)Lsun/security/x509/X509CertImpl;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verify(Ljava/security/cert/X509Certificate;Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkValidity()V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "checkValidity(Ljava/util/Date;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "derEncode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getAuthKeyId()Lsun/security/x509/KeyIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAuthorityInfoAccessExtension()Lsun/security/x509/AuthorityInfoAccessExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getAuthorityKeyIdentifierExtension()Lsun/security/x509/AuthorityKeyIdentifierExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBasicConstraints()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getBasicConstraintsExtension()Lsun/security/x509/BasicConstraintsExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCRLDistributionPointsExtension()Lsun/security/x509/CRLDistributionPointsExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCertificatePoliciesExtension()Lsun/security/x509/CertificatePoliciesExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncodedInternal()[B": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getExtendedKeyUsage()Ljava/util/List;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtendedKeyUsageExtension()Lsun/security/x509/ExtendedKeyUsageExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtension(Lsun/security/util/ObjectIdentifier;)Lsun/security/x509/Extension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtensionValue(Ljava/lang/String;)[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerAlternativeNameExtension()Lsun/security/x509/IssuerAlternativeNameExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getIssuerAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerUniqueID()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getIssuerX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKeyUsage()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNameConstraintsExtension()Lsun/security/x509/NameConstraintsExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNonCriticalExtensionOIDs()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotAfter()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getNotBefore()Ljava/util/Date;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getPolicyConstraintsExtension()Lsun/security/x509/PolicyConstraintsExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPolicyMappingsExtension()Lsun/security/x509/PolicyMappingsExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPrivateKeyUsageExtension()Lsun/security/x509/PrivateKeyUsageExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPublicKey()Ljava/security/PublicKey;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumber()Ljava/math/BigInteger;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSerialNumberObject()Lsun/security/x509/SerialNumber;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSigAlgName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgOID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSigAlgParams()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSignature()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectAlternativeNameExtension()Lsun/security/x509/SubjectAlternativeNameExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectAlternativeNames()Ljava/util/Collection;": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectDN()Ljava/security/Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectKeyId()Lsun/security/x509/KeyIdentifier;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectKeyIdentifierExtension()Lsun/security/x509/SubjectKeyIdentifierExtension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSubjectUniqueID()[Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getSubjectX500Principal()Ljavax/security/auth/x500/X500Principal;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getTBSCertificate()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getUnparseableExtension(Lsun/security/util/ObjectIdentifier;)Lsun/security/x509/Extension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVersion()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hasUnsupportedCriticalExtension()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sign(Ljava/security/PrivateKey;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "sign(Ljava/security/PrivateKey;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;)V": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/lang/String;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "verify(Ljava/security/PublicKey;Ljava/security/Provider;)V": {"other": [".method", "public", "declared-synchronized"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509CertInfo;": {"fields": {"ALGORITHM_ID:Ljava/lang/String;": {"value": "\"algorithmID\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_ALGORITHM:I": {"value": "0x3", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_EXTENSIONS:I": {"value": "0xa", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_ISSUER:I": {"value": "0x4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_ISSUER_ID:I": {"value": "0x8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_KEY:I": {"value": "0x7", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_SERIAL:I": {"value": "0x2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_SUBJECT:I": {"value": "0x6", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_SUBJECT_ID:I": {"value": "0x9", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_VALIDITY:I": {"value": "0x5", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ATTR_VERSION:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DN_NAME:Ljava/lang/String;": {"value": "\"dname\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EXTENSIONS:Ljava/lang/String;": {"value": "\"extensions\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "IDENT:Ljava/lang/String;": {"value": "\"x509.info\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER:Ljava/lang/String;": {"value": "\"issuer\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISSUER_ID:Ljava/lang/String;": {"value": "\"issuerID\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "KEY:Ljava/lang/String;": {"value": "\"key\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NAME:Ljava/lang/String;": {"value": "\"info\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SERIAL_NUMBER:Ljava/lang/String;": {"value": "\"serialNumber\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT:Ljava/lang/String;": {"value": "\"subject\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUBJECT_ID:Ljava/lang/String;": {"value": "\"subjectID\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VALIDITY:Ljava/lang/String;": {"value": "\"validity\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "VERSION:Ljava/lang/String;": {"value": "\"version\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "map:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "algId:Lsun/security/x509/CertificateAlgorithmId;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensions:Lsun/security/x509/CertificateExtensions;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "interval:Lsun/security/x509/CertificateValidity;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuer:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "issuerUniqueId:Lsun/security/x509/UniqueIdentity;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "pubKey:Lsun/security/x509/CertificateX509Key;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "rawCertInfo:[B": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "serialNum:Lsun/security/x509/CertificateSerialNumber;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subject:Lsun/security/x509/X500Name;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "subjectUniqueId:Lsun/security/x509/UniqueIdentity;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "version:Lsun/security/x509/CertificateVersion;": {"value": null, "other": [".field", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/util/DerValue;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "([B)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "attributeMap(Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "emit(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getX500Name(Ljava/lang/String;Z)Ljava/lang/Object;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setAlgorithmId(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setExtensions(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIssuer(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setIssuerUniqueId(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setKey(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSerialNumber(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSubject(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSubjectUniqueId(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setValidity(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setVersion(Ljava/lang/Object;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "verifyCert(Lsun/security/x509/X500Name;Lsun/security/x509/CertificateExtensions;)V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "delete(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Ljava/io/OutputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Lsun/security/x509/X509CertInfo;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getElements()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncodedInfo()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "set(Ljava/lang/String;Ljava/lang/Object;)V": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/security/x509/X509Key;": {"fields": {"serialVersionUID:J": {"value": "-0x4a5fe2419b658d5aL", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "algid:Lsun/security/x509/AlgorithmId;": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "bitStringKey:Lsun/security/util/BitArray;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encodedKey:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "key:[B": {"value": null, "other": [".field", "protected"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "unusedBits:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "(Lsun/security/x509/AlgorithmId;Lsun/security/util/BitArray;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "buildX509Key(Lsun/security/x509/AlgorithmId;Lsun/security/util/BitArray;)Ljava/security/PublicKey;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;Lsun/security/x509/AlgorithmId;Lsun/security/util/BitArray;)V": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Lsun/security/util/DerValue;)Ljava/security/PublicKey;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "readObject(Ljava/io/ObjectInputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "writeObject(Ljava/io/ObjectOutputStream;)V": {"other": [".method", "private"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "decode(Ljava/io/InputStream;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "decode([B)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode(Lsun/security/util/DerOutputStream;)V": {"other": [".method", "public", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "encode()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithm()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAlgorithmId()Lsun/security/x509/AlgorithmId;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEncoded()[B": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getEncodedInternal()[B": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFormat()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getKey()Lsun/security/util/BitArray;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "parseKeyBits()V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setKey(Lsun/security/util/BitArray;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/ResourceBundleEnumeration;": {"fields": {"enumeration:Ljava/util/Enumeration;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "iterator:Ljava/util/Iterator;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "set:Ljava/util/Set;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/util/Set;Ljava/util/Enumeration;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasMoreElements()Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "nextElement()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/AbstractCalendar;": {"fields": {"DAY_IN_MILLIS:I": {"value": "0x5265c00", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "EPOCH_OFFSET:I": {"value": "0xaf93b", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "HOUR_IN_MILLIS:I": {"value": "0x36ee80", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MINUTE_IN_MILLIS:I": {"value": "0xea60", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SECOND_IN_MILLIS:I": {"value": "0x3e8", "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eras:[Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeekDateAfter(JI)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeekDateBefore(JI)J": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeekDateOnOrBefore(JI)J": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDateFromFixedDate(Lsun/util/calendar/CalendarDate;J)V": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEra(Ljava/lang/String;)Lsun/util/calendar/Era;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEras()[Lsun/util/calendar/Era;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getFixedDate(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNthDayOfWeek(IILsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTime(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimeOfDay(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimeOfDayValue(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getWeekLength()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeTime(Lsun/util/calendar/CalendarDate;)I": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/CalendarDate;Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEras([Lsun/util/calendar/Era;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(Lsun/util/calendar/CalendarDate;I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validateTime(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/BaseCalendar$Date;": {"fields": {"cachedFixedDateJan1:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedFixedDateNextJan1:J": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cachedYear:I": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCachedJan1()J": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCachedYear()I": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedYear()I": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "hit(I)Z": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hit(J)Z": {"other": [".method", "protected", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setCache(IJI)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedDate(III)Lsun/util/calendar/BaseCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedYear(I)V": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Lsun/util/calendar/BaseCalendar;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ACCUMULATED_DAYS_IN_MONTH:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ACCUMULATED_DAYS_IN_MONTH_LEAP:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "APRIL:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "AUGUST:I": {"value": "0x8", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BASE_YEAR:I": {"value": "0x7b2", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DAYS_IN_MONTH:[I": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DECEMBER:I": {"value": "0xc", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FEBRUARY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FIXED_DATES:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FRIDAY:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JANUARY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JULY:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JUNE:I": {"value": "0x6", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MARCH:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MAY:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "MONDAY:I": {"value": "0x2", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NOVEMBER:I": {"value": "0xb", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OCTOBER:I": {"value": "0xa", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SATURDAY:I": {"value": "0x7", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SEPTEMBER:I": {"value": "0x9", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SUNDAY:I": {"value": "0x1", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "THURSDAY:I": {"value": "0x5", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TUESDAY:I": {"value": "0x3", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WEDNESDAY:I": {"value": "0x4", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeekFromFixedDate(J)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMonthLength(II)I": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDateFromFixedDate(Lsun/util/calendar/CalendarDate;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeek(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfYear(III)J": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfYear(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDate(IIILsun/util/calendar/BaseCalendar$Date;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDate(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGregorianYearFromFixedDate(J)I": {"other": [".method", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMonthLength(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearFromFixedDate(J)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearLength(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearLengthInMonths(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(I)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeMonth(Lsun/util/calendar/CalendarDate;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/CalendarDate;": {"fields": {"FIELD_UNDEFINED:I": {"value": "-0x80000000", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "TIME_UNDEFINED:J": {"value": "-0x8000000000000000L", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dayOfMonth:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "dayOfWeek:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "daylightSaving:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "era:Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forceStandardTime:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fraction:J": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hours:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "leapYear:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "locale:Ljava/util/Locale;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "millis:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "minutes:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "month:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalized:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "seconds:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "year:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zoneOffset:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "zoneinfo:Ljava/util/TimeZone;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addDate(III)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addDayOfMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addHours(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMillis(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMinutes(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addSeconds(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addTimeOfDay(IIII)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDayOfWeek()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDaylightSaving()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEra()Lsun/util/calendar/Era;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHours()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMillis()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMinutes()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMonth()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSeconds()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimeOfDay()J": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getZoneOffset()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDaylightTime()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNormalized()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameDate(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isStandardTime()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDate(III)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setDayOfMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setDayOfWeek(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDaylightSaving(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHours(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setLeapYear(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLocale(Ljava/util/Locale;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMillis(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setMinutes(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalized(Z)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSeconds(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setStandardTime(Z)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(IIII)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(J)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setZone(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setZoneOffset(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/calendar/CalendarSystem;": {"fields": {"GREGORIAN_INSTANCE:Lsun/util/calendar/Gregorian;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "calendars:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "names:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "forName(Ljava/lang/String;)Lsun/util/calendar/CalendarSystem;": {"other": [".method", "public", "static"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getCalendarProperties()Ljava/util/Properties;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getGregorianCalendar()Lsun/util/calendar/Gregorian;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEra(Ljava/lang/String;)Lsun/util/calendar/Era;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEras()[Lsun/util/calendar/Era;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMonthLength(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNthDayOfWeek(IILsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTime(Lsun/util/calendar/CalendarDate;)J": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "getWeekLength()I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearLength(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearLengthInMonths(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "normalize(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/CalendarDate;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(Lsun/util/calendar/CalendarDate;I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Lsun/util/calendar/CalendarUtils;": {"fields": {}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "amod(II)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "amod(JJ)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floorDivide(II)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "floorDivide(II[I)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floorDivide(JI[I)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "floorDivide(JJ)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "isGregorianLeapYear(I)Z": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isJulianLeapYear(I)Z": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mod(II)I": {"other": [".method", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "mod(JJ)J": {"other": [".method", "public", "static", "final"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "sprintf0d(Ljava/lang/StringBuffer;II)Ljava/lang/StringBuffer;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sprintf0d(Ljava/lang/StringBuilder;II)Ljava/lang/StringBuilder;": {"other": [".method", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/Era;": {"fields": {"abbr:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "localTime:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "since:J": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "sinceDate:Lsun/util/calendar/CalendarDate;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;JZ)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getAbbreviation()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getDiaplayAbbreviation(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDisplayName(Ljava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "getSince(Ljava/util/TimeZone;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSinceDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "greylist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isLocalTime()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/calendar/Gregorian$Date;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedYear()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedYear(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/Gregorian;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/Gregorian$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/ImmutableGregorianDate;": {"fields": {"date:Lsun/util/calendar/BaseCalendar$Date;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Lsun/util/calendar/BaseCalendar$Date;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "unsupported()V": {"other": [".method", "private"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "addDate(III)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addDayOfMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addHours(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMillis(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMinutes(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addSeconds(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addTimeOfDay(IIII)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clone()Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getDayOfMonth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeek()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDaylightSaving()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEra()Lsun/util/calendar/Era;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getHours()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMillis()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMinutes()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getMonth()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedYear()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSeconds()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getTimeOfDay()J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYear()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getZone()Ljava/util/TimeZone;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getZoneOffset()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isDaylightTime()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNormalized()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSameDate(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isStandardTime()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDate(III)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDayOfMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDayOfWeek(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setDaylightSaving(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setHours(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLeapYear(Z)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLocale(Ljava/util/Locale;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMillis(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMinutes(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setMonth(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalized(Z)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedYear(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setSeconds(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setStandardTime(Z)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(IIII)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setTimeOfDay(J)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setZone(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setZoneOffset(I)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/calendar/JulianCalendar$Date;": {"fields": {}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedYear()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setKnownEra(Lsun/util/calendar/Era;)V": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedYear(I)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/calendar/JulianCalendar;": {"fields": {"$assertionsDisabled:Z": {"value": "false", "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "BCE:I": {"value": "0x0", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CE:I": {"value": "0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JULIAN_EPOCH:I": {"value": "-0x1", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "eras:[Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgeteras()[Lsun/util/calendar/Era;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDateFromFixedDate(Lsun/util/calendar/CalendarDate;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDayOfWeek(Lsun/util/calendar/CalendarDate;)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getFixedDate(IIILsun/util/calendar/BaseCalendar$Date;)J": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getYearFromFixedDate(J)I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(I)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/JulianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/calendar/LocalGregorianCalendar$Date;": {"fields": {"gregorianYear:I": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/TimeZone;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "addYear(I)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNormalizedYear()I": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setEra(Lsun/util/calendar/Era;)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setLocalEra(Lsun/util/calendar/Era;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLocalYear(I)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setNormalizedYear(I)V": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setYear(I)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "setYear(I)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/calendar/LocalGregorianCalendar;": {"fields": {"eras:[Lsun/util/calendar/Era;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "name:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;[Lsun/util/calendar/Era;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "adjustYear(Lsun/util/calendar/LocalGregorianCalendar$Date;JI)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocalGregorianCalendar(Ljava/lang/String;)Lsun/util/calendar/LocalGregorianCalendar;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validateEra(Lsun/util/calendar/Era;)Z": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate()Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(J)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLjava/util/TimeZone;)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDate(JLsun/util/calendar/CalendarDate;)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCalendarDateFromFixedDate(Lsun/util/calendar/CalendarDate;J)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(I)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLeapYear(Lsun/util/calendar/Era;I)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/CalendarDate;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "newCalendarDate()Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "newCalendarDate(Ljava/util/TimeZone;)Lsun/util/calendar/LocalGregorianCalendar$Date;": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "normalize(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}, "normalizeMonth(Lsun/util/calendar/CalendarDate;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeYear(Lsun/util/calendar/CalendarDate;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "validate(Lsun/util/calendar/CalendarDate;)Z": {"other": [".method", "public"], "hiddenapi": "greylist-max-r", "hiddenapi_domain": null}}}, "Lsun/util/locale/BaseLocale$Cache;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createObject(Lsun/util/locale/BaseLocale$Key;)Lsun/util/locale/BaseLocale;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizeKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "bridge", "synthetic"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalizeKey(Lsun/util/locale/BaseLocale$Key;)Lsun/util/locale/BaseLocale$Key;": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/util/locale/BaseLocale$Key;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lang:Ljava/lang/ref/SoftReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "normalized:Z": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "regn:Ljava/lang/ref/SoftReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "scrt:Ljava/lang/ref/SoftReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "vart:Ljava/lang/ref/SoftReference;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"-$$Nest$fgetlang(Lsun/util/locale/BaseLocale$Key;)Ljava/lang/ref/SoftReference;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetregn(Lsun/util/locale/BaseLocale$Key;)Ljava/lang/ref/SoftReference;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetscrt(Lsun/util/locale/BaseLocale$Key;)Ljava/lang/ref/SoftReference;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "-$$Nest$fgetvart(Lsun/util/locale/BaseLocale$Key;)Ljava/lang/ref/SoftReference;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Lsun/util/locale/BaseLocale$Key-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalize(Lsun/util/locale/BaseLocale$Key;)Lsun/util/locale/BaseLocale$Key;": {"other": [".method", "public", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/BaseLocale$Key-IA;": {"fields": {}, "methods": {}}, "Lsun/util/locale/BaseLocale-IA;": {"fields": {}, "methods": {}}, "Lsun/util/locale/BaseLocale;": {"fields": {"CACHE:Lsun/util/locale/BaseLocale$Cache;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "SEP:Ljava/lang/String;": {"value": "\"_\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hash:I": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "language:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "region:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "script:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "variant:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lsun/util/locale/BaseLocale-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanCache()V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createInstance(Ljava/lang/String;Ljava/lang/String;)Lsun/util/locale/BaseLocale;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getInstance(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lsun/util/locale/BaseLocale;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getLanguage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRegion()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getScript()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVariant()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/Extension;": {"fields": {"id:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "key:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "value:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(C)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(CLjava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKey()C": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getValue()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setValue(Ljava/lang/String;)V": {"other": [".method", "protected"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar-IA;": {"fields": {}, "methods": {}}, "Lsun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar;": {"fields": {"ch:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "lowerCh:C": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(C)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar-IA;)V": {"other": [".method", "synthetic", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value()C": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/util/locale/InternalLocaleBuilder$CaseInsensitiveString;": {"fields": {"lowerStr:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "str:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "value()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/util/locale/InternalLocaleBuilder;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVATEUSE_KEY:Lsun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extensions:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "language:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "region:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "script:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "uattributes:Ljava/util/Set;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "ukeywords:Ljava/util/Map;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "variant:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "checkVariants(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "removePrivateuseVariant(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setExtensions(Ljava/util/List;Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "setUnicodeLocaleExtension(Ljava/lang/String;)V": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "addUnicodeLocaleAttribute(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clear()Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "clearExtensions()Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getBaseLocale()Lsun/util/locale/BaseLocale;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLocaleExtensions()Lsun/util/locale/LocaleExtensions;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "removeUnicodeLocaleAttribute(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setExtension(CLjava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setExtensions(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLanguage(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLanguageTag(Lsun/util/locale/LanguageTag;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLocale(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setRegion(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setScript(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setUnicodeLocaleKeyword(Ljava/lang/String;Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setVariant(Ljava/lang/String;)Lsun/util/locale/InternalLocaleBuilder;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/LanguageTag;": {"fields": {"GRANDFATHERED:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "PRIVATEUSE:Ljava/lang/String;": {"value": "\"x\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "PRIVUSE_VARIANT_PREFIX:Ljava/lang/String;": {"value": "\"lvariant\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SEP:Ljava/lang/String;": {"value": "\"-\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "UNDETERMINED:Ljava/lang/String;": {"value": "\"und\"", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensions:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "extlangs:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "language:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "privateuse:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "region:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "script:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "variants:Ljava/util/List;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "canonicalizeExtension(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeExtensionSingleton(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeExtensionSubtag(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeExtlang(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeLanguage(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizePrivateuse(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizePrivateuseSubtag(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeRegion(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeScript(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "canonicalizeVariant(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExtensionSingleton(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExtensionSingletonChar(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExtensionSubtag(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isExtlang(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLanguage(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPrivateusePrefix(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPrivateusePrefixChar(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isPrivateuseSubtag(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isRegion(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isScript(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isVariant(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Ljava/lang/String;Lsun/util/locale/ParseStatus;)Lsun/util/locale/LanguageTag;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseExtensions(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseExtlangs(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseLanguage(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseLocale(Lsun/util/locale/BaseLocale;Lsun/util/locale/LocaleExtensions;)Lsun/util/locale/LanguageTag;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parsePrivateuse(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseRegion(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseScript(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseVariants(Lsun/util/locale/StringTokenIterator;Lsun/util/locale/ParseStatus;)Z": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getExtensions()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtlangs()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLanguage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getPrivateuse()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getRegion()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getScript()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getVariants()Ljava/util/List;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/LocaleEquivalentMaps;": {"fields": {"multiEquivsMap:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "regionVariantEquivMap:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "singleEquivMap:Ljava/util/Map;": {"value": null, "other": [".field", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/LocaleExtensions;": {"fields": {"$assertionsDisabled:Z": {"value": null, "other": [".field", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CALENDAR_JAPANESE:Lsun/util/locale/LocaleExtensions;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NUMBER_THAI:Lsun/util/locale/LocaleExtensions;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "extensionMap:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "id:Ljava/lang/String;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/Character;Lsun/util/locale/Extension;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "(Ljava/util/Map;Ljava/util/Set;Ljava/util/Map;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "isValidKey(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isValidUnicodeLocaleKey(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toID(Ljava/util/SortedMap;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "equals(Ljava/lang/Object;)Z": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "getExtension(Ljava/lang/Character;)Lsun/util/locale/Extension;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtensionValue(Ljava/lang/Character;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getID()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleType(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hashCode()I": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "isEmpty()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/LocaleMatcher;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filter(Ljava/util/List;Ljava/util/Collection;Ljava/util/Locale$FilteringMode;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterBasic(Ljava/util/List;Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterExtended(Ljava/util/List;Ljava/util/Collection;)Ljava/util/List;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "filterTags(Ljava/util/List;Ljava/util/Collection;Ljava/util/Locale$FilteringMode;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEquivalentForRegionAndVariant(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getEquivalentsForLanguage(Ljava/lang/String;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getExtentionKeyIndex(Ljava/lang/String;)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookup(Ljava/util/List;Ljava/util/Collection;)Ljava/util/Locale;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookupTag(Ljava/util/List;Ljava/util/Collection;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "mapEquivalents(Ljava/util/List;Ljava/util/Map;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parse(Ljava/lang/String;)Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "replaceFirstSubStringMatch(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/LocaleObjectCache$CacheEntry;": {"fields": {"key:Ljava/lang/Object;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V": {"other": [".method", "constructor"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "getKey()Ljava/lang/Object;": {"other": [".method"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}}, "Lsun/util/locale/LocaleObjectCache;": {"fields": {"map:Ljava/util/concurrent/ConcurrentMap;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "queue:Ljava/lang/ref/ReferenceQueue;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(IFI)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "cleanStaleEntries()V": {"other": [".method", "public"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "createObject(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "get(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeKey(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "put(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/LocaleSyntaxException;": {"fields": {"serialVersionUID:J": {"value": "0x1L", "other": [".field", "private", "static", "final"], "hiddenapi": "whitelist", "hiddenapi_domain": null}, "index:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getErrorIndex()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/LocaleUtils;": {"fields": {}, "methods": {"()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "caseIgnoreCompare(Ljava/lang/String;Ljava/lang/String;)I": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "caseIgnoreMatch(Ljava/lang/String;Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAlpha(C)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAlphaNumeric(C)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAlphaNumericString(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAlphaString(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty(Ljava/util/List;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty(Ljava/util/Map;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEmpty(Ljava/util/Set;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLower(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNumeric(C)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isNumericString(Ljava/lang/String;)Z": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isUpper(C)Z": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toLower(C)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toLowerString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toTitleString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUpper(C)C": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toUpperString(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/ParseStatus;": {"fields": {"errorIndex:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "errorMsg:Ljava/lang/String;": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "parseLength:I": {"value": null, "other": [".field"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getErrorIndex()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getErrorMessage()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getParseLength()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isError()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "reset()V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/StringTokenIterator;": {"fields": {"delimiterChar:C": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "dlms:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "done:Z": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "end:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "start:I": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "text:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "token:Ljava/lang/String;": {"value": null, "other": [".field", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "nextDelimiter(I)I": {"other": [".method", "private"], "hiddenapi": "greylist-max-o", "hiddenapi_domain": null}, "current()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "currentEnd()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "currentStart()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "first()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "hasNext()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isDone()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "next()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setStart(I)Lsun/util/locale/StringTokenIterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setText(Ljava/lang/String;)Lsun/util/locale/StringTokenIterator;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/locale/UnicodeLocaleExtension;": {"fields": {"CA_JAPANESE:Lsun/util/locale/UnicodeLocaleExtension;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "NU_THAI:Lsun/util/locale/UnicodeLocaleExtension;": {"value": null, "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SINGLETON:C": {"value": "'u'", "other": [".field", "public", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "attributes:Ljava/util/Set;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "keywords:Ljava/util/Map;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/util/SortedSet;Ljava/util/SortedMap;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAttribute(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isKey(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isSingletonChar(C)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isTypeSubtag(Ljava/lang/String;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getID()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKey()C": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleAttributes()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleKeys()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getUnicodeLocaleType(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getValue()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toString()Ljava/lang/String;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/locale/provider/CalendarDataUtility;": {"fields": {"BUDDHIST_CALENDAR:Ljava/lang/String;": {"value": "\"buddhist\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "GREGORIAN_CALENDAR:Ljava/lang/String;": {"value": "\"gregorian\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ISLAMIC_CALENDAR:Ljava/lang/String;": {"value": "\"islamic\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "JAPANESE_CALENDAR:Ljava/lang/String;": {"value": "\"japanese\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "REST_OF_STYLES:[I": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getDateFormatSymbols(Ljava/lang/String;Ljava/util/Locale;)Landroid/icu/text/DateFormatSymbols;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getNames(Ljava/lang/String;IILjava/util/Locale;)[Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "normalizeCalendarType(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieveFieldValueName(Ljava/lang/String;IIILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieveFieldValueNames(Ljava/lang/String;IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieveFieldValueNamesImpl(Ljava/lang/String;IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieveJavaTimeFieldValueName(Ljava/lang/String;IIILjava/util/Locale;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "retrieveJavaTimeFieldValueNames(Ljava/lang/String;IILjava/util/Locale;)Ljava/util/Map;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toContext(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "toWidth(I)I": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/LoggingProxy;": {"fields": {}, "methods": {"getLevel(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelName(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelValue(Ljava/lang/Object;)I": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLogger(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerLevel(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerNames()Ljava/util/List;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getParentLoggerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getProperty(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLevel(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLoggerLevel(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/LoggingSupport$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Lsun/util/logging/LoggingProxy;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/LoggingSupport$2;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "run()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/LoggingSupport;": {"fields": {"DEFAULT_FORMAT:Ljava/lang/String;": {"value": "\"%1$tb %1$td, %1$tY %1$tl:%1$tM:%1$tS %1$Tp %2$s%n%4$s: %5$s%6$s%n\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FORMAT_PROP_KEY:Ljava/lang/String;": {"value": "\"java.util.logging.SimpleFormatter.format\"", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "proxy:Lsun/util/logging/LoggingProxy;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ensureAvailable()V": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevel(Ljava/lang/Object;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelName(Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevelValue(Ljava/lang/Object;)I": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLogger(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerLevel(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLoggerNames()Ljava/util/List;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getParentLoggerName(Ljava/lang/String;)Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSimpleFormat()Ljava/lang/String;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getSimpleFormat(Z)Ljava/lang/String;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isAvailable()Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Ljava/lang/Object;Ljava/lang/Object;)Z": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "log(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "static", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "parseLevel(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Ljava/lang/Object;Ljava/lang/Object;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLoggerLevel(Ljava/lang/String;Ljava/lang/String;)V": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/PlatformLogger$1;": {"fields": {}, "methods": {"()V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Boolean;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "run()Ljava/lang/Object;": {"other": [".method", "public", "bridge", "synthetic"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}}}, "Lsun/util/logging/PlatformLogger$DefaultLoggerProxy;": {"fields": {"formatString:Ljava/lang/String;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "date:Ljava/util/Date;": {"value": null, "other": [".field", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "effectiveLevel:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "level:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "deriveEffectiveLevel(Lsun/util/logging/PlatformLogger$Level;)Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "format(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;Ljava/lang/Throwable;)Ljava/lang/String;": {"other": [".method", "private", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "formatMessage(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;": {"other": [".method", "private", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getCallerInfo()Ljava/lang/String;": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "outputStream()Ljava/io/PrintStream;": {"other": [".method", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevel()Lsun/util/logging/PlatformLogger$Level;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEnabled()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Lsun/util/logging/PlatformLogger$Level;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Lsun/util/logging/PlatformLogger$Level;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/PlatformLogger$JavaLoggerProxy;": {"fields": {"javaLogger:Ljava/lang/Object;": {"value": null, "other": [".field", "private", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;Lsun/util/logging/PlatformLogger$Level;)V": {"other": [".method", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevel()Lsun/util/logging/PlatformLogger$Level;": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEnabled()Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Lsun/util/logging/PlatformLogger$Level;)Z": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Lsun/util/logging/PlatformLogger$Level;)V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/PlatformLogger$Level;": {"fields": {"$VALUES:[Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "private", "static", "final", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "ALL:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONFIG:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINE:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINER:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINEST:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFO:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "LEVEL_VALUES:[I": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFF:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SEVERE:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WARNING:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "public", "static", "final", "enum"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaLevel:Ljava/lang/Object;": {"value": null, "other": [".field"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;I)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(I)Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "valueOf(Ljava/lang/String;)Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "values()[Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "public", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "intValue()I": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/PlatformLogger$LoggerProxy;": {"fields": {"name:Ljava/lang/String;": {"value": null, "other": [".field", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"(Ljava/lang/String;)V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "doLog(Lsun/util/logging/PlatformLogger$Level;Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "varargs", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLevel()Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEnabled()Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Lsun/util/logging/PlatformLogger$Level;)Z": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Lsun/util/logging/PlatformLogger$Level;)V": {"other": [".method", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/logging/PlatformLogger;": {"fields": {"ALL:I": {"value": "-0x80000000", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "CONFIG:I": {"value": "0x2bc", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "DEFAULT_LEVEL:Lsun/util/logging/PlatformLogger$Level;": {"value": null, "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINE:I": {"value": "0x1f4", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINER:I": {"value": "0x190", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "FINEST:I": {"value": "0x12c", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "INFO:I": {"value": "0x320", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "OFF:I": {"value": "0x7fffffff", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "SEVERE:I": {"value": "0x3e8", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "WARNING:I": {"value": "0x384", "other": [".field", "private", "static", "final"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loggers:Ljava/util/Map;": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loggingEnabled:Z": {"value": null, "other": [".field", "private", "static"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "javaLoggerProxy:Lsun/util/logging/PlatformLogger$JavaLoggerProxy;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loggerProxy:Lsun/util/logging/PlatformLogger$LoggerProxy;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"-$$Nest$sfgetDEFAULT_LEVEL()Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "static", "bridge", "synthetic"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "()V": {"other": [".method", "static", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "(Ljava/lang/String;)V": {"other": [".method", "private", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getLogger(Ljava/lang/String;)Lsun/util/logging/PlatformLogger;": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "redirectPlatformLoggers()V": {"other": [".method", "public", "static", "declared-synchronized"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "redirectToJavaLoggerProxy()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "config(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "config(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "config(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fine(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fine(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "fine(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finer(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finer(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finer(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finest(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finest(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "finest(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getName()Ljava/lang/String;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "info(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "info(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "info(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isEnabled()Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "isLoggable(Lsun/util/logging/PlatformLogger$Level;)Z": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "level()Lsun/util/logging/PlatformLogger$Level;": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "setLevel(Lsun/util/logging/PlatformLogger$Level;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "severe(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "severe(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "severe(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "warning(Ljava/lang/String;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "warning(Ljava/lang/String;Ljava/lang/Throwable;)V": {"other": [".method", "public"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "warning(Ljava/lang/String;[Ljava/lang/Object;)V": {"other": [".method", "public", "varargs"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}, "Lsun/util/resources/OpenListResourceBundle;": {"fields": {"keyset:Ljava/util/Set;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "lookup:Ljava/util/Map;": {"value": null, "other": [".field", "private", "volatile"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}, "methods": {"()V": {"other": [".method", "protected", "constructor"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "loadLookup()V": {"other": [".method", "private"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createMap(I)Ljava/util/Map;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "createSet()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getContents()[[Ljava/lang/Object;": {"other": [".method", "protected", "abstract"], "hiddenapi": "blacklist", "hiddenapi_domain": null}, "getKeys()Ljava/util/Enumeration;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleGetObject(Ljava/lang/String;)Ljava/lang/Object;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "handleKeySet()Ljava/util/Set;": {"other": [".method", "protected"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "keySet()Ljava/util/Set;": {"other": [".method", "public"], "hiddenapi": "whitelist", "hiddenapi_domain": "test-api"}, "loadLookupTablesIfNecessary()V": {"other": [".method"], "hiddenapi": "blacklist", "hiddenapi_domain": null}}}} \ No newline at end of file diff --git a/androscalpel/src/tests/mod.rs b/androscalpel/src/tests/mod.rs index 71919e6..5d0db58 100644 --- a/androscalpel/src/tests/mod.rs +++ b/androscalpel/src/tests/mod.rs @@ -1,6 +1,7 @@ use super::*; use androscalpel_serializer::Instruction as InsFormat; use androscalpel_serializer::*; +use serde_json as sj; use std::collections::HashSet; use std::fs::File; use std::io; @@ -548,3 +549,130 @@ fn test_2_from_json() { new_apk.add_dex_file(&dex).unwrap(); assert_eq!(apk, new_apk); } + +#[test] +fn test_hidden_api() { + let dex_raw = get_dex("core-oj-33_classes.dex"); + // The data are generated using src/tests/apktool_parse_hiddenapi.py src/tests/core-oj-33_classes.dex src/tests/core-oj-33_hiddenapi.json + let apktool_result = format!( + "{}/src/tests/{}", + env!("CARGO_MANIFEST_DIR"), + "core-oj-33_hiddenapi.json" + ); + fn f_desc_to_pointer(f_dsc: &IdField) -> String { + let name: String = String::try_from(&f_dsc.name.0).unwrap().replace("/", "~1"); + let ty: String = f_dsc.type_.try_to_smali().unwrap().replace("/", "~1"); + format!( + "/{}/fields/{name}:{ty}", + f_dsc.class_.try_to_smali().unwrap().replace("/", "~1") + ) + } + fn m_desc_to_pointer(m_dsc: &IdMethod) -> String { + let name: String = String::try_from(&m_dsc.name.0).unwrap().replace("/", "~1"); + let ty: String = m_dsc.proto.try_to_smali().unwrap().replace("/", "~1"); + format!( + "/{}/methods/{name}{ty}", + m_dsc.class_.try_to_smali().unwrap().replace("/", "~1") + ) + } + fn compare_hidden_api( + apktool_hiddenapi: &sj::Value, + apktool_hiddenapi_domain: &sj::Value, + parsed_api: &Option, + name: &str, + ) { + match (apktool_hiddenapi, apktool_hiddenapi_domain, parsed_api) { + (sj::Value::Null, sj::Value::Null, None) => (), + ( + sj::Value::String(apktool_hiddenapi), + sj::Value::String(apktool_domain), + Some(HiddenApiData { permission, domain }), + ) if (permission.to_smali_name() == apktool_hiddenapi) + && (&domain.to_smali_name() == apktool_domain) => + { + () + } + ( + sj::Value::String(apktool_hiddenapi), + sj::Value::Null, + Some(HiddenApiData { + permission, + domain, + }), + ) if (permission.to_smali_name() == apktool_hiddenapi) && &domain.to_smali_name() == "" => (), + + _ => panic!("Expected {apktool_hiddenapi:?} and {apktool_hiddenapi_domain:?}, found {parsed_api:?} in {name}"), + } + } + let apktool_result = File::open(&apktool_result).expect("core-oj-33_hiddenapi.json not found"); + let apktool_result = std::io::BufReader::new(apktool_result); + let apktool_result: sj::Value = sj::from_reader(apktool_result).unwrap(); + let mut apk = Apk::new(); + apk.add_dex_file(&dex_raw).unwrap(); + for cls in apktool_result.as_object().unwrap().keys() { + assert!( + apk.classes + .get(&dex_id::IdType(cls.as_str().into())) + .is_some(), + "{cls} not found in core-oj-33_classes.dex" + ); + } + for cls in apk.classes.keys() { + assert!( + apktool_result.get::((&cls.0).into()).is_some(), + "{} not found in core-oj-33_hiddenapi.json", + cls.__str__() + ); + } + for (_, cls) in &apk.classes { + for (f_dsc, field) in &cls.static_fields { + let pointer = f_desc_to_pointer(f_dsc); + let apktool_field = apktool_result.pointer(&pointer).unwrap(); + let apktool_hiddenapi = apktool_field.get("hiddenapi").unwrap(); + let apktool_hiddenapi_domain = apktool_field.get("hiddenapi_domain").unwrap(); + compare_hidden_api( + apktool_hiddenapi, + &apktool_hiddenapi_domain, + &field.hiddenapi, + &f_dsc.try_to_smali().unwrap(), + ); + } + + for (f_dsc, field) in &cls.instance_fields { + let pointer = f_desc_to_pointer(f_dsc); + let apktool_field = apktool_result.pointer(&pointer).unwrap(); + let apktool_hiddenapi = apktool_field.get("hiddenapi").unwrap(); + let apktool_hiddenapi_domain = apktool_field.get("hiddenapi_domain").unwrap(); + compare_hidden_api( + apktool_hiddenapi, + &apktool_hiddenapi_domain, + &field.hiddenapi, + &f_dsc.try_to_smali().unwrap(), + ); + } + for (m_dsc, method) in &cls.direct_methods { + let pointer = m_desc_to_pointer(m_dsc); + let apktool_method = apktool_result.pointer(&pointer).unwrap(); + let apktool_hiddenapi = apktool_method.get("hiddenapi").unwrap(); + let apktool_hiddenapi_domain = apktool_method.get("hiddenapi_domain").unwrap(); + compare_hidden_api( + apktool_hiddenapi, + &apktool_hiddenapi_domain, + &method.hiddenapi, + &m_dsc.try_to_smali().unwrap(), + ); + } + for (m_dsc, method) in &cls.virtual_methods { + let pointer = m_desc_to_pointer(m_dsc); + let apktool_method = apktool_result.pointer(&pointer).unwrap(); + let apktool_hiddenapi = apktool_method.get("hiddenapi").unwrap(); + let apktool_hiddenapi_domain = apktool_method.get("hiddenapi_domain").unwrap(); + compare_hidden_api( + apktool_hiddenapi, + &apktool_hiddenapi_domain, + &method.hiddenapi, + &m_dsc.try_to_smali().unwrap(), + ); + } + } +} diff --git a/androscalpel_serializer/src/file_reader.rs b/androscalpel_serializer/src/file_reader.rs index 20b4078..4859c2d 100644 --- a/androscalpel_serializer/src/file_reader.rs +++ b/androscalpel_serializer/src/file_reader.rs @@ -1,9 +1,9 @@ //! Parser for a .dex file. use crate::{ - CallSiteIdItem, ClassDefItem, EndianConstant, Error, FieldIdItem, HeaderItem, MapItemType, - MapList, MethodHandleItem, MethodIdItem, ProtoIdItem, Result, Serializable, StringDataItem, - StringIdItem, TypeIdItem, + CallSiteIdItem, ClassDataItem, ClassDefItem, EndianConstant, Error, FieldIdItem, HeaderItem, + HiddenApiFlags, HiddenapiClassDataItem, MapItemType, MapList, MethodHandleItem, MethodIdItem, + ProtoIdItem, Result, Serializable, StringDataItem, StringIdItem, TypeIdItem, }; use log::{error, info, warn}; use std::io::{Cursor, Seek, SeekFrom}; @@ -28,6 +28,7 @@ pub struct DexFileReader<'a> { class_defs: Vec, call_site_ids: Vec, method_handles: Vec, + hiddenapi_class_data: Option, map_list: MapList, } @@ -48,6 +49,7 @@ impl<'a> DexFileReader<'a> { class_defs: vec![], call_site_ids: vec![], method_handles: vec![], + hiddenapi_class_data: None, map_list: MapList { list: vec![] }, }; if tmp_file.header.map_off != 0 { @@ -99,6 +101,15 @@ impl<'a> DexFileReader<'a> { tmp_file.method_handles = tmp_file.get_item_list::(item.offset, item.size)? } + if let Some(item) = tmp_file + .map_list + .list + .iter() + .find(|item| item.type_ == MapItemType::HiddenapiClassDataItem) + { + tmp_file.hiddenapi_class_data = + Some(tmp_file.get_struct_at_offset::(item.offset)?); + } tmp_file.sanity_check()?; Ok(tmp_file) } @@ -107,39 +118,39 @@ impl<'a> DexFileReader<'a> { pub fn get_header(&self) -> &HeaderItem { &self.header } - /// Retunr the file [`StringIdItem`] list. + /// Return the file [`StringIdItem`] list. pub fn get_string_ids(&self) -> &[StringIdItem] { &self.string_ids } - /// Retunr the file [`TypeIdItem`] list. + /// Return the file [`TypeIdItem`] list. pub fn get_type_ids(&self) -> &[TypeIdItem] { &self.type_ids } - /// Retunr the file [`ProtoIdItem`] list. + /// Return the file [`ProtoIdItem`] list. pub fn get_proto_ids(&self) -> &[ProtoIdItem] { &self.proto_ids } - /// Retunr the file [`FieldIdItem`] list. + /// Return the file [`FieldIdItem`] list. pub fn get_field_ids(&self) -> &[FieldIdItem] { &self.field_ids } - /// Retunr the file [`MethodIdItem`] list. + /// Return the file [`MethodIdItem`] list. pub fn get_method_ids(&self) -> &[MethodIdItem] { &self.method_ids } - /// Retunr the file [`ClassDefItem`] list. + /// Return the file [`ClassDefItem`] list. pub fn get_class_defs(&self) -> &[ClassDefItem] { &self.class_defs } - /// Retunr the file [`CallSiteIdItem`] list. + /// Return the file [`CallSiteIdItem`] list. pub fn get_call_site_ids(&self) -> &[CallSiteIdItem] { &self.call_site_ids } - /// Retunr the file [`MethodHandleItem`] list. + /// Return the file [`MethodHandleItem`] list. pub fn get_method_handles(&self) -> &[MethodHandleItem] { &self.method_handles } - /// Retunr the file [`MapList`]. + /// Return the file [`MapList`]. pub fn get_map_list(&self) -> &MapList { &self.map_list } @@ -421,6 +432,45 @@ impl<'a> DexFileReader<'a> { r } + /// Return the hiddenapi flags list for the given class. + /// + /// The list of flags is composed of one [`HiddenApiFlags`] for each static field, instance + /// field, direct method and virtual method of the class, in that order. + /// + /// `class_def_item_idx` if the idx of the `class_def_item`, **not** the `class_idx` (contrary + /// to what + /// says) + pub fn get_class_hiddenapi_flags( + &self, + class_def_item_idx: usize, + ) -> Result>> { + if class_def_item_idx >= self.class_defs.len() { + return Err(Error::InconsistantStruct(format!( + "idx 0x{class_def_item_idx:x} is out of bound of class_defs" + ))); + } + let class_def = self.class_defs[class_def_item_idx]; + if class_def.class_data_off == 0 { + if self.hiddenapi_class_data.is_some() { + return Ok(Some(vec![])); + } else { + return Ok(None); + } + } + let class_data = self.get_struct_at_offset::(class_def.class_data_off)?; + let nb_flags = class_data.static_fields.len() + + class_data.instance_fields.len() + + class_data.direct_methods.len() + + class_data.virtual_methods.len(); + if let Some(hidden_api_data) = &self.hiddenapi_class_data { + hidden_api_data + .get_flags(nb_flags, class_def_item_idx) + .map(Some) + } else { + Ok(None) + } + } + /// Return the strings that where not referenced. pub fn get_not_resolved_strings(&mut self) -> Result> { // use `&mut self` because using this method at the same time as performing diff --git a/androscalpel_serializer/src/items/hiddenapi.rs b/androscalpel_serializer/src/items/hiddenapi.rs index d43213b..f6bac11 100644 --- a/androscalpel_serializer/src/items/hiddenapi.rs +++ b/androscalpel_serializer/src/items/hiddenapi.rs @@ -1,13 +1,12 @@ //! Hidden api items. -use crate as androscalpel_serializer; use crate::{Error, ReadSeek, Result, Serializable, Uleb128}; -use std::io::{Cursor, Write}; +use std::io::{Cursor, Seek, SeekFrom, Write}; /// -/// Hard to serialize/deserialize without additional data like the number of classes +/// Hard to serialize/deserialize without additional data like the number of classes defs /// or the method/field of the classes. -#[derive(Clone, PartialEq, Eq)] +#[derive(Clone, PartialEq, Eq, Debug)] pub struct HiddenapiClassDataItem { //pub size: u32, pub data: Vec, @@ -18,7 +17,7 @@ impl HiddenapiClassDataItem { self.data.len() as u32 } - /// Return `hiddenapi_class_data_item.offsets[class_idx]`. + /// Return `hiddenapi_class_data_item.offsets[class_def_item_idx]`. /// /// If `0`: Either no data for this class or all API flags are zero. /// Else: offset from the begining of the [`HiddenapiClassDataItem`] @@ -26,13 +25,17 @@ impl HiddenapiClassDataItem { /// /// # Warning /// - /// They are no check weither the `class_idx` is valid one or not. - /// Giving an invalid idx (like an idx >= nb class) is UB. - pub fn get_offset(&self, class_idx: u32) -> Result { - let index = (class_idx as usize) * 4; - if self.data.len() < index - 4 { + /// `class_def_item_idx` is **NOT** `class_idx` (Contrary to what + /// says). + /// `class_def_item_idx` is the index of the `class_def_item`. + /// + /// They are no check weither the `class_def_item_idx` is valid one or not. + /// Giving an invalid idx (like an idx >= nb class def) is UB. + pub fn get_offset(&self, class_def_item_idx: usize) -> Result { + let index = class_def_item_idx * 4; + if self.data.len() <= index { Err(Error::InconsistantStruct(format!( - "class index 0x{class_idx:x} out of bound of HiddenapiClassDataItem data" + "class index 0x{class_def_item_idx:x} out of bound of HiddenapiClassDataItem data" ))) } else { u32::deserialize_from_slice(&self.data[index..]) @@ -44,7 +47,7 @@ impl HiddenapiClassDataItem { /// # Warning /// /// They are no check weither the `nb_class` is valid one or not. - /// Giving an invalid `nb_class`. + /// Giving an invalid `nb_class` is UB. pub fn get_offsets(&self, nb_class: u32) -> Result> { let mut offsets = vec![]; let mut buffer = Cursor::new(self.data.as_slice()); @@ -60,19 +63,37 @@ impl HiddenapiClassDataItem { /// /// # Warning /// - /// They are no check weither the `nb_flags` or `offset` + /// `class_def_item_idx` is **NOT** `class_idx` (Contrary to what + /// says). + /// `class_def_item_idx` is the index of the `class_def_item`. + /// + /// They are no check weither the `nb_flags` or `class_def_item_idx` /// are valid. Providing invalid values is UB. - pub fn get_flags(&self, nb_flags: usize, offset: u32) -> Result> { + pub fn get_flags( + &self, + nb_flags: usize, + class_def_item_idx: usize, + ) -> Result> { + let offset = self.get_offset(class_def_item_idx)?; if offset == 0 { - Ok(vec![Uleb128(0); nb_flags]) + Ok(vec![HiddenApiFlags::DEFAULT; nb_flags]) } else if offset < 4 { // < 8 is almost certainly false panic!() } else { let mut buffer = Cursor::new(self.data.as_slice()); + buffer + .seek(SeekFrom::Start(offset as u64 - 4)) + .map_err(|_| { + Error::InconsistantStruct(format!( + "{offset} if out of data bound for HiddenApiClassData" + )) + })?; let mut flags = vec![]; for _ in 0..nb_flags { - flags.push(Uleb128::deserialize(&mut buffer)?); + flags.push(HiddenApiFlags::from_uleb128(Uleb128::deserialize( + &mut buffer, + )?)); } Ok(flags) } @@ -102,40 +123,139 @@ impl Serializable for HiddenapiClassDataItem { } } -/// Flags for hidden api -#[derive(Serializable, Debug, PartialEq, Eq, Copy, Clone)] -#[prefix_type(Uleb128)] -pub enum HiddenApiFlag { +#[derive(Clone, PartialEq, Eq)] +pub struct HiddenApiFlags { + pub value: HiddenApiValue, + pub domain_api: HiddenApiDomain, +} + +impl HiddenApiFlags { + pub const DEFAULT: Self = Self { + value: HiddenApiValue::Whitelist, + domain_api: HiddenApiDomain { + is_test_api: false, + is_core_platform_api: false, + unknown_flags: 0, + }, + }; + + pub fn from_uleb128(Uleb128(val): Uleb128) -> Self { + Self { + value: HiddenApiValue::from_u32(val), + domain_api: HiddenApiDomain::from_u32(val), + } + } + + pub fn to_uleb128(&self) -> Uleb128 { + Uleb128(self.value.to_u32() | self.domain_api.to_u32()) + } +} + +/// Flags for hidden api flag value +#[derive(Debug, PartialEq, Eq, Copy, Clone)] +pub enum HiddenApiValue { /// Interfaces that can be freely used and are supported as /// part of the officially documented Android framework Package Index - #[prefix(Uleb128(0x00))] Whitelist, /// Non-SDK interfaces that can be used regardless of the /// application's target API level - #[prefix(Uleb128(0x01))] Greylist, /// Non-SDK interfaces that cannot be used regardless of the /// application's target API level. Accessing one of these /// interfaces causes a runtime error. - #[prefix(Uleb128(0x02))] Blacklist, /// Non-SDK interfaces that can be used for Android 8.x and - /// below unless they are restricted. - #[prefix(Uleb128(0x03))] + /// below unless they are restricted (targetSdkVersion <= 27 (O_MR1)). GreylistMaxO, /// Non-SDK interfaces that can be used for Android 9.x unless /// they are restricted. - #[prefix(Uleb128(0x04))] GreylistMaxP, /// Non-SDK interfaces that can be used for Android 10.x unless /// they are restricted. - #[prefix(Uleb128(0x05))] GreylistMaxQ, /// Non-SDK interfaces that can be used for Android 11.x unless /// they are restricted. - #[prefix(Uleb128(0x06))] GreylistMaxR, + GreylistMaxS, /// Unknown flag, either an error or this crate is out of date. - #[default_variant] - Unknwon(Uleb128), + Unknwon(u8), +} + +impl HiddenApiValue { + pub const MASK: u32 = 0b111; + pub fn from_u32(flags: u32) -> Self { + match flags & Self::MASK { + 0x00 => Self::Whitelist, + 0x01 => Self::Greylist, + 0x02 => Self::Blacklist, + 0x03 => Self::GreylistMaxO, + 0x04 => Self::GreylistMaxP, + 0x05 => Self::GreylistMaxQ, + 0x06 => Self::GreylistMaxR, + 0x07 => Self::GreylistMaxS, + other => Self::Unknwon(other as u8), + } + } + pub fn to_u32(&self) -> u32 { + match self { + Self::Whitelist => 0x00, + Self::Greylist => 0x01, + Self::Blacklist => 0x02, + Self::GreylistMaxO => 0x03, + Self::GreylistMaxP => 0x04, + Self::GreylistMaxQ => 0x05, + Self::GreylistMaxR => 0x06, + Self::GreylistMaxS => 0x07, + Self::Unknwon(other) => { + if (0b1111_1000 & *other) != 0 { + panic!("HiddenApiValue is encoded on 3 bits but found value {other}"); + } + *other as u32 + } + } + } +} + +/// Flags for hidden api flag domain +#[derive(Debug, PartialEq, Eq, Copy, Clone)] +pub struct HiddenApiDomain { + pub is_core_platform_api: bool, + pub is_test_api: bool, + pub unknown_flags: u32, +} + +impl HiddenApiDomain { + pub const CORE_PLATFORM_API_FLAG: u32 = 0x08; + pub const TEST_API_FLAG: u32 = 0x10; + pub fn from_u32(flags: u32) -> Self { + let flags = flags & !HiddenApiValue::MASK; + Self { + is_core_platform_api: (flags & Self::CORE_PLATFORM_API_FLAG) != 0, + is_test_api: (flags & Self::TEST_API_FLAG) != 0, + unknown_flags: flags & (!Self::CORE_PLATFORM_API_FLAG) & (!Self::TEST_API_FLAG), + } + } + pub fn to_u32(&self) -> u32 { + if ((0b111 | Self::CORE_PLATFORM_API_FLAG | Self::CORE_PLATFORM_API_FLAG) + & self.unknown_flags) + != 0 + { + panic!( + "The first 5 bits of HiddenApiDomain are reserved and \ + shoud be set to 0, but value 0x{:x} was found", + self.unknown_flags + ); + } + self.unknown_flags + | if self.is_core_platform_api { + Self::CORE_PLATFORM_API_FLAG + } else { + 0 + } + | if self.is_test_api { + Self::TEST_API_FLAG + } else { + 0 + } + } }