Java org.springframework.core.type ClassMetadata fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.type ClassMetadata fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.type ClassMetadata.

The text is from its open source code.

Method

StringgetClassName()
Return the name of the underlying class.
String[]getInterfaceNames()
Return the names of all interfaces that the underlying class implements, or an empty array if there are none.
StringgetSuperClassName()
Return the name of the super class of the underlying class, or null if there is no super class defined.
booleanhasEnclosingClass()
Return whether the underlying class is declared within an enclosing class (i.e.
booleanhasSuperClass()
Return whether the underlying class has a super class.
booleanisAbstract()
Return whether the underlying class is marked as abstract.
booleanisConcrete()
Return whether the underlying class represents a concrete class, i.e.
booleanisInterface()
Return whether the underlying class represents an interface.