|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jboss.util.JBossObject
org.jboss.reflect.plugins.AbstractAnnotatedInfo
org.jboss.reflect.plugins.InheritableAnnotationHolder
org.jboss.reflect.plugins.ClassInfoImpl
public class ClassInfoImpl
Class info TODO JBMICROCONT-118 fix the introspection assumption
| Field Summary | |
|---|---|
protected ClassInfoHelper |
classInfoHelper
The class info helper |
protected ConstructorInfo[] |
constructors
The constructor info |
protected HashMap<String,FieldInfo> |
fieldMap
Field map Map |
protected FieldInfo[] |
fields
The fields |
protected InterfaceInfo[] |
genericInterfaces
The generic interfaces |
protected ClassInfo |
genericSuperclass
The generic super class |
protected InterfaceInfo[] |
interfaces
The interfaces |
protected MethodInfo[] |
methods
The methods |
protected int |
modifiers
The class modifiers |
protected String |
name
The class name |
protected PackageInfo |
packageInfo
The package info |
protected ClassInfo |
superclass
The super class |
protected TypeInfoFactory |
typeInfoFactory
The type info factory |
static ClassInfo |
UNKNOWN_CLASS
Marker for generation |
static ClassInfo[] |
UNKNOWN_CLASSES
Marker for generation |
static ConstructorInfo[] |
UNKNOWN_CONSTRUCTORS
Marker for generation |
static FieldInfo[] |
UNKNOWN_FIELDS
Marker for generation |
static InterfaceInfo[] |
UNKNOWN_INTERFACES
Marker for generation |
static MethodInfo[] |
UNKNOWN_METHODS
Marker for generation |
static TypeInfo |
UNKNOWN_TYPE
Marker for generation |
static TypeInfo[] |
UNKNOWN_TYPES
Marker for generation |
| Fields inherited from class org.jboss.reflect.plugins.InheritableAnnotationHolder |
|---|
allAnnotations, allAnnotationsArray, annotatedElement, annotationHelper, declaredAnnotations, declaredAnnotationsArray |
| Fields inherited from class org.jboss.util.JBossObject |
|---|
hashCode, log, toString |
| Fields inherited from interface org.jboss.reflect.spi.ModifierInfo |
|---|
ABSTRACT, CONSTANT, FINAL, PACKAGE, PACKAGE_ABSTRACT, PACKAGE_CONSTANT, PACKAGE_STATIC, PRIVATE, PRIVATE_CONSTANT, PRIVATE_STATIC, PROTECTED, PROTECTED_ABSTRACT, PROTECTED_CONSTANT, PROTECTED_STATIC, PUBLIC, PUBLIC_ABSTRACT, PUBLIC_CONSTANT, PUBLIC_STATIC, STATIC |
| Constructor Summary | |
|---|---|
ClassInfoImpl()
Create a new abstract ClassInfo. |
|
ClassInfoImpl(String name)
Create a new class info |
|
ClassInfoImpl(String name,
int modifiers)
Create a new abstract ClassInfo. |
|
ClassInfoImpl(String name,
int modifiers,
InterfaceInfo[] interfaces,
ClassInfoImpl superclass)
Create a new abstract ClassInfo. |
|
| Method Summary | ||
|---|---|---|
Object |
convertValue(Object value)
Convert a value |
|
Object |
convertValue(Object value,
boolean replaceProperties)
Convert a value |
|
Object |
convertValue(Object value,
boolean replaceProperties,
boolean trim)
Convert a value |
|
boolean |
equals(Object obj)
|
|
static ConstructorInfo |
findConstructor(ConstructorInfo[] constructors,
TypeInfo[] parameters)
Find a constructor |
|
static MethodInfo |
findMethod(MethodInfo[] methods,
String name,
TypeInfo[] parameters)
Find a method |
|
TypeInfo[] |
getActualTypeArguments()
Get the actual type parameters |
|
static Class<?> |
getArrayClass(Class<?> clazz)
Get an array class |
|
TypeInfo |
getArrayType()
Get an array type |
|
|
getAttachment(Class<T> expectedType)
Get an attachment from the type, uses the expected type as both the name and to cast the resulting object. |
|
Object |
getAttachment(String name)
Get an attachment from the type |
|
TypeInfo |
getComponentType()
Get the component type if it is a collection or an array |
|
ConstructorInfo |
getDeclaredConstructor(TypeInfo[] parameters)
Get a declared constructor |
|
ConstructorInfo[] |
getDeclaredConstructors()
Get the declared constructors |
|
FieldInfo |
getDeclaredField(String name)
Get the declared field |
|
FieldInfo[] |
getDeclaredFields()
Get the declared fields |
|
MethodInfo |
getDeclaredMethod(String name,
TypeInfo[] parameters)
Get the declared method |
|
MethodInfo[] |
getDeclaredMethods()
Get the declared methods |
|
InterfaceInfo[] |
getGenericInterfaces()
Get the generic interfaces |
|
ClassInfo |
getGenericSuperclass()
Get the generic super class |
|
InterfaceInfo[] |
getInterfaces()
Get the interfaces |
|
TypeInfo |
getKeyType()
Get the key type if it is a map |
|
int |
getModifiers()
Get the modifiers |
|
String |
getName()
Get the class name |
|
TypeInfo |
getOwnerType()
Get the owner type |
|
PackageInfo |
getPackage()
Get the package |
|
ClassInfo |
getRawType()
Get the raw type |
|
String |
getSimpleName()
Get the simple name |
|
ClassInfo |
getSuperclass()
Get the super class |
|
protected InheritableAnnotationHolder |
getSuperHolder()
Get the super holder of annoations |
|
Class<? extends Object> |
getType()
Deprecated. |
|
TypeInfoFactory |
getTypeInfoFactory()
Get the TypeInfoFactory that created this type info |
|
TypeInfo |
getValueType()
Get the value type if it is a map |
|
int |
hashCode()
|
|
boolean |
isAnnotation()
Whether this type is an annotation |
|
boolean |
isArray()
Whether this type is an array |
|
boolean |
isAssignableFrom(TypeInfo info)
Mostly using |
|
boolean |
isCollection()
Whether this type is a collection |
|
boolean |
isEnum()
Whether this type is an enum |
|
boolean |
isInterface()
Whether it is an interface |
|
boolean |
isMap()
Whether this type is a map |
|
boolean |
isPrimitive()
Whether this type is a primitive |
|
boolean |
isPublic()
Whether it is public |
|
boolean |
isStatic()
Whether it is static |
|
boolean |
isVolatile()
Whether it is volatile |
|
Object |
newArrayInstance(int size)
Create a new array |
|
void |
setAttachment(String name,
Object attachment)
Set an attachment against the type. |
|
void |
setClassInfoHelper(ClassInfoHelper classInfoHelper)
|
|
void |
setDeclaredConstructors(ConstructorInfoImpl[] constructors)
Set the declared constructors |
|
void |
setDeclaredFields(FieldInfoImpl[] fields)
Set the declared fields |
|
void |
setDeclaredMethods(MethodInfoImpl[] methods)
Set the declared methods |
|
void |
setGenericInterfaces(InterfaceInfo[] interfaces)
Set the generic interfaces |
|
void |
setGenericSuperclass(ClassInfo superInfo)
Set the generic super class |
|
void |
setInterfaces(InterfaceInfo[] interfaces)
Set the interfaces |
|
void |
setSuperclass(ClassInfoImpl superInfo)
Set the super class |
|
void |
setType(Class<?> type)
Set the type |
|
void |
setTypeInfoFactory(TypeInfoFactory typeInfoFactory)
|
|
protected void |
toString(org.jboss.util.JBossStringBuilder buffer)
|
|
| Methods inherited from class org.jboss.reflect.plugins.InheritableAnnotationHolder |
|---|
getAllAnnotations, getAnnotation, getAnnotations, getDeclaredAnnotations, isAnnotationPresent, setAnnotatedElement, setAnnotationHelper, setupAnnotations |
| Methods inherited from class org.jboss.reflect.plugins.AbstractAnnotatedInfo |
|---|
getUnderlyingAnnotation, getUnderlyingAnnotations, isAnnotationPresent |
| Methods inherited from class org.jboss.util.JBossObject |
|---|
cacheGetHashCode, cacheToString, clone, equals, flushJBossObjectCache, getClassShortName, getHashCode, list, notEqual, toShortString, toShortString, toString, toStringImplementation |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.jboss.reflect.spi.AnnotatedInfo |
|---|
getAnnotation, getAnnotations, getUnderlyingAnnotation, getUnderlyingAnnotations, isAnnotationPresent, isAnnotationPresent |
| Methods inherited from interface org.jboss.util.JBossInterface |
|---|
clone, toShortString, toShortString |
| Field Detail |
|---|
public static final ClassInfo UNKNOWN_CLASS
public static final ClassInfo[] UNKNOWN_CLASSES
public static final TypeInfo UNKNOWN_TYPE
public static final TypeInfo[] UNKNOWN_TYPES
public static final InterfaceInfo[] UNKNOWN_INTERFACES
public static final ConstructorInfo[] UNKNOWN_CONSTRUCTORS
public static final MethodInfo[] UNKNOWN_METHODS
public static final FieldInfo[] UNKNOWN_FIELDS
protected String name
protected int modifiers
protected InterfaceInfo[] interfaces
protected InterfaceInfo[] genericInterfaces
protected MethodInfo[] methods
protected FieldInfo[] fields
protected HashMap<String,FieldInfo> fieldMap
protected ClassInfo superclass
protected ClassInfo genericSuperclass
protected ConstructorInfo[] constructors
protected PackageInfo packageInfo
protected transient ClassInfoHelper classInfoHelper
protected transient TypeInfoFactory typeInfoFactory
| Constructor Detail |
|---|
public ClassInfoImpl()
public ClassInfoImpl(String name)
name - the class name
public ClassInfoImpl(String name,
int modifiers)
name - the class namemodifiers - the class modifiers
public ClassInfoImpl(String name,
int modifiers,
InterfaceInfo[] interfaces,
ClassInfoImpl superclass)
name - the class namemodifiers - the class modifiersinterfaces - the interfacessuperclass - the super class| Method Detail |
|---|
public TypeInfoFactory getTypeInfoFactory()
TypeInfo
getTypeInfoFactory in interface TypeInfopublic void setTypeInfoFactory(TypeInfoFactory typeInfoFactory)
public void setClassInfoHelper(ClassInfoHelper classInfoHelper)
public static MethodInfo findMethod(MethodInfo[] methods,
String name,
TypeInfo[] parameters)
methods - the methodsname - the nameparameters - the parameters
public static ConstructorInfo findConstructor(ConstructorInfo[] constructors,
TypeInfo[] parameters)
constructors - the constructorsparameters - the parameters
public static Class<?> getArrayClass(Class<?> clazz)
clazz - the class
public void setType(Class<?> type)
type - the classpublic void setInterfaces(InterfaceInfo[] interfaces)
interfaces - the interfacespublic void setGenericInterfaces(InterfaceInfo[] interfaces)
interfaces - the interfacespublic void setDeclaredMethods(MethodInfoImpl[] methods)
methods - the methodspublic void setDeclaredFields(FieldInfoImpl[] fields)
fields - the fieldspublic void setDeclaredConstructors(ConstructorInfoImpl[] constructors)
constructors - the constructorspublic void setSuperclass(ClassInfoImpl superInfo)
superInfo - the super classpublic void setGenericSuperclass(ClassInfo superInfo)
superInfo - the super classpublic boolean isInterface()
ClassInfo
isInterface in interface ClassInfopublic InterfaceInfo[] getInterfaces()
ClassInfo
getInterfaces in interface ClassInfopublic InterfaceInfo[] getGenericInterfaces()
ClassInfo
getGenericInterfaces in interface ClassInfo
public MethodInfo getDeclaredMethod(String name,
TypeInfo[] parameters)
ClassInfo
getDeclaredMethod in interface ClassInfoname - the method nameparameters - the parameters
public MethodInfo[] getDeclaredMethods()
ClassInfo
getDeclaredMethods in interface ClassInfopublic FieldInfo getDeclaredField(String name)
ClassInfo
getDeclaredField in interface ClassInfoname - the field name
public FieldInfo[] getDeclaredFields()
ClassInfo
getDeclaredFields in interface ClassInfopublic ConstructorInfo getDeclaredConstructor(TypeInfo[] parameters)
ClassInfo
getDeclaredConstructor in interface ClassInfoparameters - the parameters
public ConstructorInfo[] getDeclaredConstructors()
ClassInfo
getDeclaredConstructors in interface ClassInfopublic ClassInfo getSuperclass()
ClassInfo
getSuperclass in interface ClassInfopublic ClassInfo getGenericSuperclass()
ClassInfo
getGenericSuperclass in interface ClassInfopublic int getModifiers()
ModifierInfo
getModifiers in interface ModifierInfopublic boolean isStatic()
ModifierInfo
isStatic in interface ModifierInfopublic boolean isPublic()
ModifierInfo
isPublic in interface ModifierInfopublic boolean isVolatile()
ModifierInfo
isVolatile in interface ModifierInfopublic String getName()
ClassInfo
getName in interface ClassInfogetName in interface TypeInfopublic String getSimpleName()
TypeInfo
getSimpleName in interface TypeInfo@Deprecated public Class<? extends Object> getType()
TypeInfo
getType in interface TypeInfo
public Object convertValue(Object value)
throws Throwable
TypeInfo
convertValue in interface TypeInfovalue - the original value
Throwable - for any error
public Object convertValue(Object value,
boolean replaceProperties)
throws Throwable
TypeInfo
convertValue in interface TypeInfovalue - the original valuereplaceProperties - whether to replace properties
Throwable - for any error
public Object convertValue(Object value,
boolean replaceProperties,
boolean trim)
throws Throwable
TypeInfo
convertValue in interface TypeInfovalue - the original valuereplaceProperties - whether to replace propertiestrim - do we trim before conversion
Throwable - for any errorpublic boolean isArray()
TypeInfo
isArray in interface TypeInfopublic boolean isCollection()
TypeInfo
isCollection in interface TypeInfopublic boolean isMap()
TypeInfo
isMap in interface TypeInfopublic boolean isAnnotation()
TypeInfo
isAnnotation in interface TypeInfopublic boolean isEnum()
TypeInfo
isEnum in interface TypeInfopublic boolean isPrimitive()
TypeInfo
isPrimitive in interface TypeInfopublic TypeInfo getArrayType()
TypeInfo
getArrayType in interface TypeInfo
public Object newArrayInstance(int size)
throws Throwable
TypeInfo
newArrayInstance in interface TypeInfosize - the size
Throwable - for any errorpublic boolean isAssignableFrom(TypeInfo info)
TypeInfo
isAssignableFrom in interface TypeInfoinfo - type info
NumberInfo tests for progressionpublic TypeInfo[] getActualTypeArguments()
ClassInfo
getActualTypeArguments in interface ClassInfopublic TypeInfo getOwnerType()
ClassInfo
getOwnerType in interface ClassInfopublic ClassInfo getRawType()
ClassInfo
getRawType in interface ClassInfopublic TypeInfo getComponentType()
ClassInfo
getComponentType in interface ClassInfopublic TypeInfo getKeyType()
ClassInfo
getKeyType in interface ClassInfopublic TypeInfo getValueType()
ClassInfo
getValueType in interface ClassInfopublic PackageInfo getPackage()
ClassInfo
getPackage in interface ClassInfo
public void setAttachment(String name,
Object attachment)
TypeInfoIf you add a future object, subsequent gets will wait for the result
WARNING: Be careful about what you put in here. Don't create references across classloaders, if you are not sure add a WeakReference to the information.
setAttachment in interface TypeInfoname - the nameattachment - the attachment, pass null to remove an attachmentpublic <T> T getAttachment(Class<T> expectedType)
TypeInfo
getAttachment in interface TypeInfoT - the expected typeexpectedType - the expected type
public Object getAttachment(String name)
TypeInfo
getAttachment in interface TypeInfoname - the name
protected InheritableAnnotationHolder getSuperHolder()
InheritableAnnotationHolder
getSuperHolder in class InheritableAnnotationHolderprotected void toString(org.jboss.util.JBossStringBuilder buffer)
toString in class org.jboss.util.JBossObjectpublic boolean equals(Object obj)
equals in class Objectpublic int hashCode()
hashCode in class org.jboss.util.JBossObject
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||