public class StandardClassMetadata extends Object implements ClassMetadata
ClassMetadata
implementation that uses standard reflection
to introspect a given Class
.Constructor and Description |
---|
StandardClassMetadata(Class<?> introspectedClass)
Create a new StandardClassMetadata wrapper for the given Class.
|
Modifier and Type | Method and Description |
---|---|
String |
getClassName()
Return the name of the underlying class.
|
String |
getEnclosingClassName()
Return the name of the enclosing class of the underlying class,
or
null if the underlying class is a top-level class. |
String[] |
getInterfaceNames()
Return the names of all interfaces that the underlying class
implements, or an empty array if there are none.
|
Class<?> |
getIntrospectedClass()
Return the underlying Class.
|
String[] |
getMemberClassNames()
Return the names of all classes declared as members of the class represented by
this ClassMetadata object.
|
String |
getSuperClassName()
Return the name of the super class of the underlying class,
or
null if there is no super class defined. |
boolean |
hasEnclosingClass()
Return whether the underlying class is declared within an enclosing
class (i.e.
|
boolean |
hasSuperClass()
Return whether the underlying class has a super class.
|
boolean |
isAbstract()
Return whether the underlying class is marked as abstract.
|
boolean |
isAnnotation()
Return whether the underlying class represents an annotation.
|
boolean |
isConcrete()
Return whether the underlying class represents a concrete class,
i.e.
|
boolean |
isFinal()
Return whether the underlying class is marked as 'final'.
|
boolean |
isIndependent()
Determine whether the underlying class is independent, i.e.
|
boolean |
isInterface()
Return whether the underlying class represents an interface.
|
public StandardClassMetadata(Class<?> introspectedClass)
introspectedClass
- the Class to introspectpublic final Class<?> getIntrospectedClass()
public String getClassName()
ClassMetadata
getClassName
in interface ClassMetadata
public boolean isInterface()
ClassMetadata
isInterface
in interface ClassMetadata
public boolean isAnnotation()
ClassMetadata
isAnnotation
in interface ClassMetadata
public boolean isAbstract()
ClassMetadata
isAbstract
in interface ClassMetadata
public boolean isConcrete()
ClassMetadata
isConcrete
in interface ClassMetadata
public boolean isFinal()
ClassMetadata
isFinal
in interface ClassMetadata
public boolean isIndependent()
ClassMetadata
isIndependent
in interface ClassMetadata
public boolean hasEnclosingClass()
ClassMetadata
If this method returns false
, then the underlying
class is a top-level class.
hasEnclosingClass
in interface ClassMetadata
@Nullable public String getEnclosingClassName()
ClassMetadata
null
if the underlying class is a top-level class.getEnclosingClassName
in interface ClassMetadata
public boolean hasSuperClass()
ClassMetadata
hasSuperClass
in interface ClassMetadata
@Nullable public String getSuperClassName()
ClassMetadata
null
if there is no super class defined.getSuperClassName
in interface ClassMetadata
public String[] getInterfaceNames()
ClassMetadata
getInterfaceNames
in interface ClassMetadata
public String[] getMemberClassNames()
ClassMetadata
getMemberClassNames
in interface ClassMetadata