ResourceBundle.ClearCache Method

Definition

Overloads

ClearCache()

Removes all resource bundles from the cache that have been loaded using the caller's class loader.

ClearCache(ClassLoader)

Removes all resource bundles from the cache that have been loaded by the given class loader.

ClearCache()

Removes all resource bundles from the cache that have been loaded using the caller's class loader.

[Android.Runtime.Register("clearCache", "()V", "")]
public static void ClearCache ();
[<Android.Runtime.Register("clearCache", "()V", "")>]
static member ClearCache : unit -> unit
Attributes

Remarks

Removes all resource bundles from the cache that have been loaded using the caller's class loader.

Added in 1.6.

Java documentation for java.util.ResourceBundle.clearCache().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ClearCache(ClassLoader)

Removes all resource bundles from the cache that have been loaded by the given class loader.

[Android.Runtime.Register("clearCache", "(Ljava/lang/ClassLoader;)V", "")]
public static void ClearCache (Java.Lang.ClassLoader? loader);
[<Android.Runtime.Register("clearCache", "(Ljava/lang/ClassLoader;)V", "")>]
static member ClearCache : Java.Lang.ClassLoader -> unit

Parameters

loader
ClassLoader

the class loader

Attributes

Remarks

Removes all resource bundles from the cache that have been loaded by the given class loader.

Added in 1.6.

Java documentation for java.util.ResourceBundle.clearCache(java.lang.ClassLoader).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to