Package org.apache.tika.utils
Class ServiceLoaderUtils
java.lang.Object
org.apache.tika.utils.ServiceLoaderUtils
Deprecated.
This version of the Apache Tika library is deprecated. Use your own version of Apache Tika.
Service Loading and Ordering related utils
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> TnewInstance(String className) Deprecated.Loads a class and instantiates itstatic <T> TnewInstance(String className, ClassLoader loader) Deprecated.Loads a class and instantiates itstatic <T> voidsortLoadedClasses(List<T> loaded) Deprecated.Sorts a list of loaded classes, so that non-Tika ones come before Tika ones, and otherwise in reverse alphabetical order
-
Constructor Details
-
ServiceLoaderUtils
public ServiceLoaderUtils()Deprecated.
-
-
Method Details
-
sortLoadedClasses
Deprecated.Sorts a list of loaded classes, so that non-Tika ones come before Tika ones, and otherwise in reverse alphabetical order -
newInstance
Deprecated.Loads a class and instantiates it- Type Parameters:
T- service type- Parameters:
className- service class name- Returns:
- instance of service
-
newInstance
Deprecated.Loads a class and instantiates it- Type Parameters:
T- service type- Parameters:
className- service class nameloader- class loader- Returns:
- instance of service
-