public interface TypeDescription extends ByteCodeElement
| Modifier and Type | Interface and Description |
|---|---|
static class |
TypeDescription.AbstractTypeDescription
An abstract base implementation of a type description.
|
static class |
TypeDescription.ArrayProjection
A projection for an array type based on an existing
TypeDescription. |
static class |
TypeDescription.ForLoadedType
A type description implementation that represents a loaded type.
|
static class |
TypeDescription.Latent
A latent type description for a type without methods or fields.
|
ModifierReviewable.AbstractModifierReviewable| Modifier and Type | Field and Description |
|---|---|
static TypeDescription |
CLASS
A representation of the
Class type. |
static TypeDescription |
ENUM
A representation of the
Enum type. |
static TypeDescription |
OBJECT
A representation of the
Object type. |
static TypeDescription |
STRING
A representation of the
String type. |
static TypeDescription |
VOID
A representation of the
void non-type. |
EMPTY_NAMEEMPTY_MASK| Modifier and Type | Method and Description |
|---|---|
int |
getActualModifiers(boolean superFlag)
Returns the type's actual modifiers as present in the class file.
|
String |
getCanonicalName()
Returns the canonical internalName of this type.
|
TypeDescription |
getComponentType()
Returns the component type of this type.
|
FieldList |
getDeclaredFields()
Returns a list of fields that are declared by this type.
|
MethodList |
getDeclaredMethods()
Returns a list of methods that are declared by this type.
|
MethodDescription |
getEnclosingMethod()
Returns a description of the enclosing method of this type.
|
TypeDescription |
getEnclosingType()
Returns a description of the enclosing type of this type.
|
AnnotationList |
getInheritedAnnotations()
Returns the annotations that this type declares or inherits from super types.
|
TypeList |
getInheritedInterfaces()
Returns all interfaces that are implemented by this type, either directly or indirectly.
|
TypeList |
getInterfaces()
Returns a list of interfaces that are implemented by this type.
|
PackageDescription |
getPackage()
Returns the package internalName of the type described by this instance.
|
String |
getSimpleName()
Returns the simple internalName of this type.
|
StackSize |
getStackSize()
Returns the size of the type described by this instance.
|
TypeDescription |
getSupertype()
Returns the component type of this type.
|
boolean |
isAnnotationReturnType()
Checks if instances of this type can be returned from an annotation method.
|
boolean |
isAnnotationValue()
Checks if instances of this type can be used for describing an annotation value.
|
boolean |
isAnnotationValue(Object value)
Checks if instances of this type can be used for describing the given annotation value.
|
boolean |
isAnonymousClass()
Checks if this type description represents an anonymous type.
|
boolean |
isArray()
Checks if the type described by this entity is an array.
|
boolean |
isAssignableFrom(Class<?> type)
Checks if this type is assignable from the type described by this instance, for example for
class Foo and class Bar extends Foo, this method would return true for
Foo.class.isAssignableFrom(Bar.class). |
boolean |
isAssignableFrom(TypeDescription typeDescription)
Checks if this type is assignable from the type described by this instance, for example for
class Foo and class Bar extends Foo, this method would return true for
Foo.class.isAssignableFrom(Bar.class). |
boolean |
isAssignableTo(Class<?> type)
Checks if this type is assignable from the type described by this instance, for example for
class Foo and class Bar extends Foo, this method would return true for
Bar.class.isAssignableTo(Foo.class). |
boolean |
isAssignableTo(TypeDescription typeDescription)
Checks if this type is assignable from the type described by this instance, for example for
class Foo and class Bar extends Foo, this method would return true for
Bar.class.isAssignableFrom(Foo.class). |
boolean |
isConstantPool()
Checks if instances of this type can be stored in the constant pool of a class.
|
boolean |
isInstance(Object value)
Checks if
value is an instance of the type represented by this instance. |
boolean |
isInstanceOrWrapper(Object value)
Checks if
value is an instance of the type represented by this instance or a wrapper instance of the
corresponding primitive value. |
boolean |
isLocalClass()
Checks if this type description represents a local type.
|
boolean |
isMemberClass()
Checks if this type description represents a member type.
|
boolean |
isPrimitive()
Checks if the type described by this entity is a primitive type.
|
boolean |
isPrimitiveWrapper()
Checks if this type represents a wrapper type for a primitive type.
|
boolean |
isSamePackage(TypeDescription typeDescription)
Checks if two types are defined in the same package.
|
boolean |
represents(Class<?> type)
Checks if the type described by this instance represents
type. |
getDescriptor, getGenericSignature, isVisibleTogetInternalName, getName, getSourceCodeNamegetModifiers, isAbstract, isAnnotation, isBridge, isDeprecated, isEnum, isFinal, isInterface, isMandated, isNative, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, isStrict, isSuper, isSynchronized, isSynthetic, isTransient, isVarArgs, isVolatilegetDeclaringTypegetDeclaredAnnotationsstatic final TypeDescription OBJECT
Object type.static final TypeDescription STRING
String type.static final TypeDescription CLASS
Class type.static final TypeDescription VOID
void non-type.static final TypeDescription ENUM
Enum type.boolean isInstance(Object value)
value is an instance of the type represented by this instance.value - The object of interest.true if the object is an instance of the type described by this instance.boolean isInstanceOrWrapper(Object value)
value is an instance of the type represented by this instance or a wrapper instance of the
corresponding primitive value.value - The object of interest.true if the object is an instance or wrapper of the type described by this instance.boolean isAssignableFrom(Class<?> type)
class Foo and class Bar extends Foo, this method would return true for
Foo.class.isAssignableFrom(Bar.class).type - The type of interest.true if this type is assignable from type.boolean isAssignableFrom(TypeDescription typeDescription)
class Foo and class Bar extends Foo, this method would return true for
Foo.class.isAssignableFrom(Bar.class).
Implementations of this methods are allowed to delegate to
isAssignableFrom(Class)typeDescription - The type of interest.true if this type is assignable from type.boolean isAssignableTo(Class<?> type)
class Foo and class Bar extends Foo, this method would return true for
Bar.class.isAssignableTo(Foo.class).type - The type of interest.true if this type is assignable to type.boolean isAssignableTo(TypeDescription typeDescription)
class Foo and class Bar extends Foo, this method would return true for
Bar.class.isAssignableFrom(Foo.class).
Implementations of this methods are allowed to delegate to
isAssignableTo(Class)typeDescription - The type of interest.true if this type is assignable to type.boolean represents(Class<?> type)
type.type - The type of interest.true if the type described by this instance represents type.boolean isArray()
true if this type description represents an array.TypeDescription getComponentType()
null if this type description does not represent an array.boolean isPrimitive()
true if this type description represents a primitive type.TypeDescription getSupertype()
null if type does not have a super type as for the
Object type.TypeList getInterfaces()
TypeList getInheritedInterfaces()
MethodDescription getEnclosingMethod()
null if there is no such method.TypeDescription getEnclosingType()
null if there is no such type.int getActualModifiers(boolean superFlag)
Returns the type's actual modifiers as present in the class file. For example, a type cannot be private.
but it modifiers might reflect this property nevertheless if a class was defined as a private inner class.
Unfortunately, the modifier for marking a static class collides with the SUPER modifier such
that these flags are indistinguishable. Therefore, the flag must be specified manually.
superFlag - true if the super flag should be set.String getSimpleName()
String getCanonicalName()
boolean isAnonymousClass()
true if this type description represents an anonymous type.boolean isLocalClass()
true if this type description represents a local type.boolean isMemberClass()
true if this type description represents a member type.FieldList getDeclaredFields()
MethodList getDeclaredMethods()
PackageDescription getPackage()
StackSize getStackSize()
AnnotationList getInheritedAnnotations()
boolean isSamePackage(TypeDescription typeDescription)
typeDescription - The type of interest.true if this type and the given type are in the same package.boolean isConstantPool()
int cannot be stored in the constant pool as those types are represented
as int values internally.true if instances of this type can be stored in the constant pool of a class.boolean isPrimitiveWrapper()
Void type is
not considered to be a wrapper type.true if this type represents a wrapper type.boolean isAnnotationReturnType()
true if instances of this type can be returned from an annotation method.boolean isAnnotationValue()
true if instances of this type can be used for describing an annotation value.boolean isAnnotationValue(Object value)
value - The value that is supposed to describe the annotation value for this instance.true if instances of this type can be used for describing the given annotation value..Copyright © 2014–2015. All rights reserved.