Class ClassUtils
- java.lang.Object
-
- org.apache.commons.lang.ClassUtils
-
@Deprecated(since="2021-04-30") public class ClassUtils extends java.lang.ObjectDeprecated.Commons Lang 2 is in maintenance mode. Commons Lang 3 should be used instead.Operates on classes without using reflection.
This class handles invalid
nullinputs as best it can. Each method documents its behaviour in more detail.The notion of a
canonical nameincludes the human readable name for the type, for exampleint[]. The non-canonical method variants work with the JVM names, such as[I.- Since:
- 2.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINNER_CLASS_SEPARATORDeprecated.The inner class separator String:"$".static charINNER_CLASS_SEPARATOR_CHARDeprecated.The inner class separator character:'$' == 36.static java.lang.StringPACKAGE_SEPARATORDeprecated.The package separator String:".".static charPACKAGE_SEPARATOR_CHARDeprecated.The package separator character:'.' == 46.
-
Constructor Summary
Constructors Constructor Description ClassUtils()Deprecated.ClassUtils instances should NOT be constructed in standard programming.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.util.ListconvertClassesToClassNames(java.util.List classes)Deprecated.Given aListofClassobjects, this method converts them into class names.static java.util.ListconvertClassNamesToClasses(java.util.List classNames)Deprecated.Given aListof class names, this method converts them into classes.static java.util.ListgetAllInterfaces(java.lang.Class cls)Deprecated.Gets aListof all interfaces implemented by the given class and its superclasses.static java.util.ListgetAllSuperclasses(java.lang.Class cls)Deprecated.Gets aListof superclasses for the given class.static java.lang.ClassgetClass(java.lang.ClassLoader classLoader, java.lang.String className)Deprecated.Returns the (initialized) class represented byclassNameusing theclassLoader.static java.lang.ClassgetClass(java.lang.ClassLoader classLoader, java.lang.String className, boolean initialize)Deprecated.Returns the class represented byclassNameusing theclassLoader.static java.lang.ClassgetClass(java.lang.String className)Deprecated.Returns the (initialized) class represented byclassNameusing the current thread's context class loader.static java.lang.ClassgetClass(java.lang.String className, boolean initialize)Deprecated.Returns the class represented byclassNameusing the current thread's context class loader.static java.lang.StringgetPackageCanonicalName(java.lang.Class cls)Deprecated.Gets the package name from the canonical name of aClass.static java.lang.StringgetPackageCanonicalName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the package name from the canonical name of anObject.static java.lang.StringgetPackageCanonicalName(java.lang.String canonicalName)Deprecated.Gets the package name from the canonical name.static java.lang.StringgetPackageName(java.lang.Class cls)Deprecated.Gets the package name of aClass.static java.lang.StringgetPackageName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the package name of anObject.static java.lang.StringgetPackageName(java.lang.String className)Deprecated.Gets the package name from aString.static java.lang.reflect.MethodgetPublicMethod(java.lang.Class cls, java.lang.String methodName, java.lang.Class[] parameterTypes)Deprecated.Returns the desired Method much likeClass.getMethod, however it ensures that the returned Method is from a public class or interface and not from an anonymous inner class.static java.lang.StringgetShortCanonicalName(java.lang.Class cls)Deprecated.Gets the canonical name minus the package name from aClass.static java.lang.StringgetShortCanonicalName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the canonical name minus the package name for anObject.static java.lang.StringgetShortCanonicalName(java.lang.String canonicalName)Deprecated.Gets the canonical name minus the package name from a String.static java.lang.StringgetShortClassName(java.lang.Class cls)Deprecated.Gets the class name minus the package name from aClass.static java.lang.StringgetShortClassName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the class name minus the package name for anObject.static java.lang.StringgetShortClassName(java.lang.String className)Deprecated.Gets the class name minus the package name from a String.static booleanisAssignable(java.lang.Class[] classArray, java.lang.Class[] toClassArray)Deprecated.Checks if an array of Classes can be assigned to another array of Classes.static booleanisAssignable(java.lang.Class[] classArray, java.lang.Class[] toClassArray, boolean autoboxing)Deprecated.Checks if an array of Classes can be assigned to another array of Classes.static booleanisAssignable(java.lang.Class cls, java.lang.Class toClass)Deprecated.Checks if oneClasscan be assigned to a variable of anotherClass.static booleanisAssignable(java.lang.Class cls, java.lang.Class toClass, boolean autoboxing)Deprecated.Checks if oneClasscan be assigned to a variable of anotherClass.static booleanisInnerClass(java.lang.Class cls)Deprecated.Is the specified class an inner class or static nested class.static java.lang.Class[]primitivesToWrappers(java.lang.Class[] classes)Deprecated.Converts the specified array of primitive Class objects to an array of its corresponding wrapper Class objects.static java.lang.ClassprimitiveToWrapper(java.lang.Class cls)Deprecated.Converts the specified primitive Class object to its corresponding wrapper Class object.static java.lang.Class[]toClass(java.lang.Object[] array)Deprecated.Converts an array ofObjectin to an array ofClassobjects.static java.lang.Class[]wrappersToPrimitives(java.lang.Class[] classes)Deprecated.Converts the specified array of wrapper Class objects to an array of its corresponding primitive Class objects.static java.lang.ClasswrapperToPrimitive(java.lang.Class cls)Deprecated.Converts the specified wrapper class to its corresponding primitive class.
-
-
-
Field Detail
-
PACKAGE_SEPARATOR_CHAR
public static final char PACKAGE_SEPARATOR_CHAR
Deprecated.The package separator character:
'.' == 46.- See Also:
- Constant Field Values
-
PACKAGE_SEPARATOR
public static final java.lang.String PACKAGE_SEPARATOR
Deprecated.The package separator String:
".".
-
INNER_CLASS_SEPARATOR_CHAR
public static final char INNER_CLASS_SEPARATOR_CHAR
Deprecated.The inner class separator character:
'$' == 36.- See Also:
- Constant Field Values
-
INNER_CLASS_SEPARATOR
public static final java.lang.String INNER_CLASS_SEPARATOR
Deprecated.The inner class separator String:
"$".
-
-
Method Detail
-
getShortClassName
public static java.lang.String getShortClassName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the class name minus the package name for an
Object.- Parameters:
object- the class to get the short name for, may be nullvalueIfNull- the value to return if null- Returns:
- the class name of the object without the package name, or the null value
-
getShortClassName
public static java.lang.String getShortClassName(java.lang.Class cls)
Deprecated.Gets the class name minus the package name from a
Class.- Parameters:
cls- the class to get the short name for.- Returns:
- the class name without the package name or an empty string
-
getShortClassName
public static java.lang.String getShortClassName(java.lang.String className)
Deprecated.Gets the class name minus the package name from a String.
The string passed in is assumed to be a class name - it is not checked.
- Parameters:
className- the className to get the short name for- Returns:
- the class name of the class without the package name or an empty string
-
getPackageName
public static java.lang.String getPackageName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the package name of an
Object.- Parameters:
object- the class to get the package name for, may be nullvalueIfNull- the value to return if null- Returns:
- the package name of the object, or the null value
-
getPackageName
public static java.lang.String getPackageName(java.lang.Class cls)
Deprecated.Gets the package name of a
Class.- Parameters:
cls- the class to get the package name for, may benull.- Returns:
- the package name or an empty string
-
getPackageName
public static java.lang.String getPackageName(java.lang.String className)
Deprecated.Gets the package name from a
String.The string passed in is assumed to be a class name - it is not checked.
If the class is unpackaged, return an empty string.
- Parameters:
className- the className to get the package name for, may benull- Returns:
- the package name or an empty string
-
getAllSuperclasses
public static java.util.List getAllSuperclasses(java.lang.Class cls)
Deprecated.Gets a
Listof superclasses for the given class.- Parameters:
cls- the class to look up, may benull- Returns:
- the
Listof superclasses in order going up from this onenullif null input
-
getAllInterfaces
public static java.util.List getAllInterfaces(java.lang.Class cls)
Deprecated.Gets a
Listof all interfaces implemented by the given class and its superclasses.The order is determined by looking through each interface in turn as declared in the source file and following its hierarchy up. Then each superclass is considered in the same way. Later duplicates are ignored, so the order is maintained.
- Parameters:
cls- the class to look up, may benull- Returns:
- the
Listof interfaces in order,nullif null input
-
convertClassNamesToClasses
public static java.util.List convertClassNamesToClasses(java.util.List classNames)
Deprecated.Given a
Listof class names, this method converts them into classes.A new
Listis returned. If the class name cannot be found,nullis stored in theList. If the class name in theListisnull,nullis stored in the outputList.- Parameters:
classNames- the classNames to change- Returns:
- a
Listof Class objects corresponding to the class names,nullif null input - Throws:
java.lang.ClassCastException- if classNames contains a non String entry
-
convertClassesToClassNames
public static java.util.List convertClassesToClassNames(java.util.List classes)
Deprecated.Given a
ListofClassobjects, this method converts them into class names.A new
Listis returned.nullobjects will be copied into the returned list asnull.- Parameters:
classes- the classes to change- Returns:
- a
Listof class names corresponding to the Class objects,nullif null input - Throws:
java.lang.ClassCastException- ifclassescontains a non-Classentry
-
isAssignable
public static boolean isAssignable(java.lang.Class[] classArray, java.lang.Class[] toClassArray)Deprecated.Checks if an array of Classes can be assigned to another array of Classes.
This method calls
isAssignablefor each Class pair in the input arrays. It can be used to check if a set of arguments (the first parameter) are suitably compatible with a set of method parameter types (the second parameter).Unlike the
Class.isAssignableFrom(java.lang.Class)method, this method takes into account widenings of primitive classes andnulls.Primitive widenings allow an int to be assigned to a
long,floatordouble. This method returns the correct result for these cases.Nullmay be assigned to any reference type. This method will returntrueifnullis passed in and the toClass is non-primitive.Specifically, this method tests whether the type represented by the specified
Classparameter can be converted to the type represented by thisClassobject via an identity conversion widening primitive or widening reference conversion. See The Java Language Specification, sections 5.1.1, 5.1.2 and 5.1.4 for details.- Parameters:
classArray- the array of Classes to check, may benulltoClassArray- the array of Classes to try to assign into, may benull- Returns:
trueif assignment possible
-
isAssignable
public static boolean isAssignable(java.lang.Class[] classArray, java.lang.Class[] toClassArray, boolean autoboxing)Deprecated.Checks if an array of Classes can be assigned to another array of Classes.
This method calls
isAssignablefor each Class pair in the input arrays. It can be used to check if a set of arguments (the first parameter) are suitably compatible with a set of method parameter types (the second parameter).Unlike the
Class.isAssignableFrom(java.lang.Class)method, this method takes into account widenings of primitive classes andnulls.Primitive widenings allow an int to be assigned to a
long,floatordouble. This method returns the correct result for these cases.Nullmay be assigned to any reference type. This method will returntrueifnullis passed in and the toClass is non-primitive.Specifically, this method tests whether the type represented by the specified
Classparameter can be converted to the type represented by thisClassobject via an identity conversion widening primitive or widening reference conversion. See The Java Language Specification, sections 5.1.1, 5.1.2 and 5.1.4 for details.- Parameters:
classArray- the array of Classes to check, may benulltoClassArray- the array of Classes to try to assign into, may benullautoboxing- whether to use implicit autoboxing/unboxing between primitives and wrappers- Returns:
trueif assignment possible- Since:
- 2.5
-
isAssignable
public static boolean isAssignable(java.lang.Class cls, java.lang.Class toClass)Deprecated.Checks if one
Classcan be assigned to a variable of anotherClass.Unlike the
Class.isAssignableFrom(java.lang.Class)method, this method takes into account widenings of primitive classes andnulls.Primitive widenings allow an int to be assigned to a long, float or double. This method returns the correct result for these cases.
Nullmay be assigned to any reference type. This method will returntrueifnullis passed in and the toClass is non-primitive.Specifically, this method tests whether the type represented by the specified
Classparameter can be converted to the type represented by thisClassobject via an identity conversion widening primitive or widening reference conversion. See The Java Language Specification, sections 5.1.1, 5.1.2 and 5.1.4 for details.- Parameters:
cls- the Class to check, may be nulltoClass- the Class to try to assign into, returns false if null- Returns:
trueif assignment possible
-
isAssignable
public static boolean isAssignable(java.lang.Class cls, java.lang.Class toClass, boolean autoboxing)Deprecated.Checks if one
Classcan be assigned to a variable of anotherClass.Unlike the
Class.isAssignableFrom(java.lang.Class)method, this method takes into account widenings of primitive classes andnulls.Primitive widenings allow an int to be assigned to a long, float or double. This method returns the correct result for these cases.
Nullmay be assigned to any reference type. This method will returntrueifnullis passed in and the toClass is non-primitive.Specifically, this method tests whether the type represented by the specified
Classparameter can be converted to the type represented by thisClassobject via an identity conversion widening primitive or widening reference conversion. See The Java Language Specification, sections 5.1.1, 5.1.2 and 5.1.4 for details.- Parameters:
cls- the Class to check, may be nulltoClass- the Class to try to assign into, returns false if nullautoboxing- whether to use implicit autoboxing/unboxing between primitives and wrappers- Returns:
trueif assignment possible- Since:
- 2.5
-
primitiveToWrapper
public static java.lang.Class primitiveToWrapper(java.lang.Class cls)
Deprecated.Converts the specified primitive Class object to its corresponding wrapper Class object.
NOTE: From v2.2, this method handles
Void.TYPE, returningVoid.TYPE.- Parameters:
cls- the class to convert, may be null- Returns:
- the wrapper class for
clsorclsifclsis not a primitive.nullif null input. - Since:
- 2.1
-
primitivesToWrappers
public static java.lang.Class[] primitivesToWrappers(java.lang.Class[] classes)
Deprecated.Converts the specified array of primitive Class objects to an array of its corresponding wrapper Class objects.
- Parameters:
classes- the class array to convert, may be null or empty- Returns:
- an array which contains for each given class, the wrapper class or
the original class if class is not a primitive.
nullif null input. Empty array if an empty array passed in. - Since:
- 2.1
-
wrapperToPrimitive
public static java.lang.Class wrapperToPrimitive(java.lang.Class cls)
Deprecated.Converts the specified wrapper class to its corresponding primitive class.
This method is the counter part of
primitiveToWrapper(). If the passed in class is a wrapper class for a primitive type, this primitive type will be returned (e.g.Integer.TYPEforInteger.class). For other classes, or if the parameter is null, the return value is null.- Parameters:
cls- the class to convert, may be null- Returns:
- the corresponding primitive type if
clsis a wrapper class, null otherwise - Since:
- 2.4
- See Also:
primitiveToWrapper(Class)
-
wrappersToPrimitives
public static java.lang.Class[] wrappersToPrimitives(java.lang.Class[] classes)
Deprecated.Converts the specified array of wrapper Class objects to an array of its corresponding primitive Class objects.
This method invokes
wrapperToPrimitive()for each element of the passed in array.- Parameters:
classes- the class array to convert, may be null or empty- Returns:
- an array which contains for each given class, the primitive class or
null if the original class is not a wrapper class.
nullif null input. Empty array if an empty array passed in. - Since:
- 2.4
- See Also:
wrapperToPrimitive(Class)
-
isInnerClass
public static boolean isInnerClass(java.lang.Class cls)
Deprecated.Is the specified class an inner class or static nested class.
- Parameters:
cls- the class to check, may be null- Returns:
trueif the class is an inner or static nested class, false if not ornull
-
getClass
public static java.lang.Class getClass(java.lang.ClassLoader classLoader, java.lang.String className, boolean initialize) throws java.lang.ClassNotFoundExceptionDeprecated.Returns the class represented byclassNameusing theclassLoader. This implementation supports the syntaxes "java.util.Map.Entry[]", "java.util.Map$Entry[]", "[Ljava.util.Map.Entry;", and "[Ljava.util.Map$Entry;".- Parameters:
classLoader- the class loader to use to load the classclassName- the class nameinitialize- whether the class must be initialized- Returns:
- the class represented by
classNameusing theclassLoader - Throws:
java.lang.ClassNotFoundException- if the class is not found
-
getClass
public static java.lang.Class getClass(java.lang.ClassLoader classLoader, java.lang.String className) throws java.lang.ClassNotFoundExceptionDeprecated.Returns the (initialized) class represented byclassNameusing theclassLoader. This implementation supports the syntaxes "java.util.Map.Entry[]", "java.util.Map$Entry[]", "[Ljava.util.Map.Entry;", and "[Ljava.util.Map$Entry;".- Parameters:
classLoader- the class loader to use to load the classclassName- the class name- Returns:
- the class represented by
classNameusing theclassLoader - Throws:
java.lang.ClassNotFoundException- if the class is not found
-
getClass
public static java.lang.Class getClass(java.lang.String className) throws java.lang.ClassNotFoundExceptionDeprecated.Returns the (initialized) class represented byclassNameusing the current thread's context class loader. This implementation supports the syntaxes "java.util.Map.Entry[]", "java.util.Map$Entry[]", "[Ljava.util.Map.Entry;", and "[Ljava.util.Map$Entry;".- Parameters:
className- the class name- Returns:
- the class represented by
classNameusing the current thread's context class loader - Throws:
java.lang.ClassNotFoundException- if the class is not found
-
getClass
public static java.lang.Class getClass(java.lang.String className, boolean initialize) throws java.lang.ClassNotFoundExceptionDeprecated.Returns the class represented byclassNameusing the current thread's context class loader. This implementation supports the syntaxes "java.util.Map.Entry[]", "java.util.Map$Entry[]", "[Ljava.util.Map.Entry;", and "[Ljava.util.Map$Entry;".- Parameters:
className- the class nameinitialize- whether the class must be initialized- Returns:
- the class represented by
classNameusing the current thread's context class loader - Throws:
java.lang.ClassNotFoundException- if the class is not found
-
getPublicMethod
public static java.lang.reflect.Method getPublicMethod(java.lang.Class cls, java.lang.String methodName, java.lang.Class[] parameterTypes) throws java.lang.SecurityException, java.lang.NoSuchMethodExceptionDeprecated.Returns the desired Method much like
Class.getMethod, however it ensures that the returned Method is from a public class or interface and not from an anonymous inner class. This means that the Method is invokable and doesn't fall foul of Java bug 4071957).Set set = Collections.unmodifiableSet(...); Method method = ClassUtils.getPublicMethod(set.getClass(), "isEmpty", new Class[0]); Object result = method.invoke(set, new Object[]);
- Parameters:
cls- the class to check, not nullmethodName- the name of the methodparameterTypes- the list of parameters- Returns:
- the method
- Throws:
java.lang.NullPointerException- if the class is nulljava.lang.SecurityException- if a a security violation occuredjava.lang.NoSuchMethodException- if the method is not found in the given class or if the metothod doen't conform with the requirements
-
toClass
public static java.lang.Class[] toClass(java.lang.Object[] array)
Deprecated.Converts an array of
Objectin to an array ofClassobjects. If any of these objects is null, a null element will be inserted into the array.This method returns
nullfor anullinput array.- Parameters:
array- anObjectarray- Returns:
- a
Classarray,nullif null array input - Since:
- 2.4
-
getShortCanonicalName
public static java.lang.String getShortCanonicalName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the canonical name minus the package name for an
Object.- Parameters:
object- the class to get the short name for, may be nullvalueIfNull- the value to return if null- Returns:
- the canonical name of the object without the package name, or the null value
- Since:
- 2.4
-
getShortCanonicalName
public static java.lang.String getShortCanonicalName(java.lang.Class cls)
Deprecated.Gets the canonical name minus the package name from a
Class.- Parameters:
cls- the class to get the short name for.- Returns:
- the canonical name without the package name or an empty string
- Since:
- 2.4
-
getShortCanonicalName
public static java.lang.String getShortCanonicalName(java.lang.String canonicalName)
Deprecated.Gets the canonical name minus the package name from a String.
The string passed in is assumed to be a canonical name - it is not checked.
- Parameters:
canonicalName- the class name to get the short name for- Returns:
- the canonical name of the class without the package name or an empty string
- Since:
- 2.4
-
getPackageCanonicalName
public static java.lang.String getPackageCanonicalName(java.lang.Object object, java.lang.String valueIfNull)Deprecated.Gets the package name from the canonical name of an
Object.- Parameters:
object- the class to get the package name for, may be nullvalueIfNull- the value to return if null- Returns:
- the package name of the object, or the null value
- Since:
- 2.4
-
getPackageCanonicalName
public static java.lang.String getPackageCanonicalName(java.lang.Class cls)
Deprecated.Gets the package name from the canonical name of a
Class.- Parameters:
cls- the class to get the package name for, may benull.- Returns:
- the package name or an empty string
- Since:
- 2.4
-
getPackageCanonicalName
public static java.lang.String getPackageCanonicalName(java.lang.String canonicalName)
Deprecated.Gets the package name from the canonical name.
The string passed in is assumed to be a canonical name - it is not checked.
If the class is unpackaged, return an empty string.
- Parameters:
canonicalName- the canonical name to get the package name for, may benull- Returns:
- the package name or an empty string
- Since:
- 2.4
-
-