Class TypeSet.VoidResolver
- java.lang.Object
-
- net.sourceforge.pmd.lang.java.symboltable.TypeSet.VoidResolver
-
- All Implemented Interfaces:
TypeSet.Resolver
- Enclosing class:
- TypeSet
public static class TypeSet.VoidResolver extends Object implements TypeSet.Resolver
Resolver that resolves the "void" type.
-
-
Constructor Summary
Constructors Constructor Description VoidResolver()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
couldResolve(String name)
Checks if the given class could be resolved by this resolver.Class<?>
resolve(String name)
Resolve the class by the given name
-
-
-
Method Detail
-
resolve
public Class<?> resolve(String name) throws ClassNotFoundException
Description copied from interface:TypeSet.Resolver
Resolve the class by the given name- Specified by:
resolve
in interfaceTypeSet.Resolver
- Parameters:
name
- the name of the class, might be fully classified or not.- Returns:
- the class
- Throws:
ClassNotFoundException
- if the class couldn't be found
-
couldResolve
public boolean couldResolve(String name)
Description copied from interface:TypeSet.Resolver
Checks if the given class could be resolved by this resolver. Notice, that a resolver's ability to resolve a class does not imply that the class will actually be found and resolved.- Specified by:
couldResolve
in interfaceTypeSet.Resolver
- Parameters:
name
- the name of the class, might be fully classified or not.- Returns:
- whether the class can be resolved
-
-