public class ClassPathUtils extends Object
The methods of this class do not allow null
inputs.
Constructor and Description |
---|
ClassPathUtils()
ClassPathUtils instances should NOT be constructed in
standard programming. |
Modifier and Type | Method and Description |
---|---|
static String |
toFullyQualifiedName(Class<?> context,
String resourceName)
Returns the fully qualified name for the resource with name
resourceName relative to the given context. |
static String |
toFullyQualifiedName(Package context,
String resourceName)
Returns the fully qualified name for the resource with name
resourceName relative to the given context. |
static String |
toFullyQualifiedPath(Class<?> context,
String resourceName)
Returns the fully qualified path for the resource with name
resourceName relative to the given context. |
static String |
toFullyQualifiedPath(Package context,
String resourceName)
Returns the fully qualified path for the resource with name
resourceName relative to the given context. |
public ClassPathUtils()
ClassPathUtils
instances should NOT be constructed in
standard programming. Instead, the class should be used as
ClassPathUtils.toFullyQualifiedName(MyClass.class, "MyClass.properties");
.
This constructor is public to permit tools that require a JavaBean instance to operate.
public static String toFullyQualifiedName(Class<?> context, String resourceName)
resourceName
relative to the given context.
Note that this method does not check whether the resource actually exists. It only constructs the name. Null inputs are not allowed.
ClassPathUtils.toFullyQualifiedName(StringUtils.class, "StringUtils.properties") = "org.apache.commons.lang3.StringUtils.properties"
context
- The context for constructing the name.resourceName
- the resource name to construct the fully qualified name for.resourceName
.NullPointerException
- if either context
or resourceName
is null.public static String toFullyQualifiedName(Package context, String resourceName)
resourceName
relative to the given context.
Note that this method does not check whether the resource actually exists. It only constructs the name. Null inputs are not allowed.
ClassPathUtils.toFullyQualifiedName(StringUtils.class.getPackage(), "StringUtils.properties") = "org.apache.commons.lang3.StringUtils.properties"
context
- The context for constructing the name.resourceName
- the resource name to construct the fully qualified name for.resourceName
.NullPointerException
- if either context
or resourceName
is null.public static String toFullyQualifiedPath(Class<?> context, String resourceName)
resourceName
relative to the given context.
Note that this method does not check whether the resource actually exists. It only constructs the path. Null inputs are not allowed.
ClassPathUtils.toFullyQualifiedPath(StringUtils.class, "StringUtils.properties") = "org/apache/commons/lang3/StringUtils.properties"
context
- The context for constructing the path.resourceName
- the resource name to construct the fully qualified path for.resourceName
.NullPointerException
- if either context
or resourceName
is null.public static String toFullyQualifiedPath(Package context, String resourceName)
resourceName
relative to the given context.
Note that this method does not check whether the resource actually exists. It only constructs the path. Null inputs are not allowed.
ClassPathUtils.toFullyQualifiedPath(StringUtils.class.getPackage(), "StringUtils.properties") = "org/apache/commons/lang3/StringUtils.properties"
context
- The context for constructing the path.resourceName
- the resource name to construct the fully qualified path for.resourceName
.NullPointerException
- if either context
or resourceName
is null.Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.