JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
  • Summary:
  • Nested |
  • Enum Constants |
  • Field |
  • Method
  • Detail:
  • Enum Constants |
  • Field |
  • Method
com.amazonaws.util

Enum ClassLoaderHelper

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      static URL getResource (String resource, boolean classesFirst, Class<?>... classes)
      If classesFirst is false, retrieves the resource via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
      static URL getResource (String resource, Class<?>... classes)
      Retrieves the resource via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
      static InputStream getResourceAsStream (String resource, boolean classesFirst, Class<?>... classes)
      If classesFirst is false, retrieves the resource as an input stream via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
      static InputStream getResourceAsStream (String resource, Class<?>... classes)
      Retrieves the resource as an input stream via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
      static List<URL> getResources (String resource, boolean classesFirst, Class<?>... classes)
      static Class<?> loadClass (String fqcn, boolean classesFirst, Class<?>... classes)
      If classesFirst is false, loads the class via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the caller class loader as the last resort.
      static Class<?> loadClass (String fqcn, Class<?>... classes)
      Loads the class via the optionally specified classes in the order of their specification, and if not found, via the context class loader of the current thread, and if not found, from the caller class loader as the last resort.
      static ClassLoaderHelper valueOf (String name)
      Returns the enum constant of this type with the specified name.
      static ClassLoaderHelper[] values ()
      Returns an array containing the constants of this enum type, in the order they are declared.
    • Method Detail

      • values

        public static ClassLoaderHelper[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ClassLoaderHelper c : ClassLoaderHelper.values())
         System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ClassLoaderHelper valueOf(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getResource

        public static URL getResource(String resource,
         Class<?>... classes)
        Retrieves the resource via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
        Parameters:
        resource - resource to be loaded
        classes - class loader providers
        Returns:
        the resource loaded as an URL or null if not found.
      • getResource

        public static URL getResource(String resource,
         boolean classesFirst,
         Class<?>... classes)
        If classesFirst is false, retrieves the resource via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.

        If classesFirst is true, retrieves the resource via the optionally specified classes in the order of their specification, and if not found, via the context class loader of the current thread, and if not found, from the class loader of ClassLoaderHelper as the last resort.

        Parameters:
        resource - resource to be loaded
        classesFirst - true if the class loaders of the optionally specified classes take precedence over the context class loader of the current thread; false if the opposite is true.
        classes - class loader providers
        Returns:
        the resource loaded as an URL or null if not found.
      • getResources

        public static List<URL> getResources(String resource,
         boolean classesFirst,
         Class<?>... classes)
      • loadClass

        public static Class<?> loadClass(String fqcn,
         Class<?>... classes)
         throws ClassNotFoundException 
        Loads the class via the optionally specified classes in the order of their specification, and if not found, via the context class loader of the current thread, and if not found, from the caller class loader as the last resort.
        Parameters:
        fqcn - fully qualified class name of the target class to be loaded
        classes - class loader providers
        Returns:
        the class loaded; never null
        Throws:
        ClassNotFoundException - if failed to load the class
      • loadClass

        public static Class<?> loadClass(String fqcn,
         boolean classesFirst,
         Class<?>... classes)
         throws ClassNotFoundException 
        If classesFirst is false, loads the class via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the caller class loader as the last resort.

        If classesFirst is true, loads the class via the optionally specified classes in the order of their specification, and if not found, via the context class loader of the current thread, and if not found, from the caller class loader as the last resort.

        Parameters:
        fqcn - fully qualified class name of the target class to be loaded
        classesFirst - true if the class loaders of the optionally specified classes take precedence over the context class loader of the current thread; false if the opposite is true.
        classes - class loader providers
        Returns:
        the class loaded; never null
        Throws:
        ClassNotFoundException - if failed to load the class
      • getResourceAsStream

        public static InputStream getResourceAsStream(String resource,
         Class<?>... classes)
        Retrieves the resource as an input stream via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.
        Parameters:
        resource - resource to be loaded
        classes - class loader providers
        Returns:
        the resource loaded as an input stream or null if not found.
      • getResourceAsStream

        public static InputStream getResourceAsStream(String resource,
         boolean classesFirst,
         Class<?>... classes)
        If classesFirst is false, retrieves the resource as an input stream via the context class loader of the current thread, and if not found, via the class loaders of the optionally specified classes in the order of their specification, and if not found, from the class loader of ClassLoaderHelper as the last resort.

        If classesFirst is true, retrieves the resource as an input stream via the optionally specified classes in the order of their specification, and if not found, via the context class loader of the current thread, and if not found, from the class loader of ClassLoaderHelper as the last resort.

        Parameters:
        resource - resource to be loaded
        classesFirst - true if the class loaders of the optionally specified classes take precedence over the context class loader of the current thread; false if the opposite is true.
        classes - class loader providers
        Returns:
        the resource loaded as an input stream or null if not found.
Skip navigation links
  • Summary:
  • Nested |
  • Enum Constants |
  • Field |
  • Method
  • Detail:
  • Enum Constants |
  • Field |
  • Method

AltStyle によって変換されたページ (->オリジナル) /