Serialized Form
-
Package com.fasterxml.classmate
-
Class com.fasterxml.classmate.AnnotationConfiguration extends java.lang.Object implements Serializable
-
Class com.fasterxml.classmate.AnnotationConfiguration.StdConfiguration extends AnnotationConfiguration implements Serializable
-
Serialized Fields
-
_defaultInclusion
AnnotationInclusion _defaultInclusion
-
_inclusions
java.util.HashMap<ClassKey,AnnotationInclusion> _inclusions
-
-
-
Class com.fasterxml.classmate.AnnotationOverrides extends java.lang.Object implements Serializable
-
Class com.fasterxml.classmate.AnnotationOverrides.StdImpl extends AnnotationOverrides implements Serializable
-
Serialized Fields
-
_targetsToOverrides
java.util.HashMap<ClassKey,java.util.List<java.lang.Class<?>>> _targetsToOverrides
-
-
-
Class com.fasterxml.classmate.Annotations extends java.lang.Object implements Serializable
-
Serialized Fields
-
_annotations
java.util.LinkedHashMap<java.lang.Class<? extends java.lang.annotation.Annotation>,java.lang.annotation.Annotation> _annotations
-
NO_ANNOTATIONS
java.lang.annotation.Annotation[] NO_ANNOTATIONS
-
-
-
Class com.fasterxml.classmate.GenericType extends java.lang.Object implements Serializable
-
Class com.fasterxml.classmate.MemberResolver extends java.lang.Object implements Serializable
-
Serialized Fields
-
_cfgIncludeLangObject
boolean _cfgIncludeLangObject
Configuration setting that determines whether members fromObject
are included or not; by default false meaning that they are not. -
_constructorFilter
Filter<RawConstructor> _constructorFilter
Filter used for determining whether given constructor is to be included in aggregation of all constructors. -
_fieldFilter
Filter<RawField> _fieldFilter
Filter used for determining whether given field (static or member) is to be included in aggregation of all fields. -
_methodFilter
Filter<RawMethod> _methodFilter
Filter used for determining whether given method (static or member) is to be included in aggregation of all methods. -
_typeResolver
TypeResolver _typeResolver
Type resolved needed for resolving types of member objects (method argument and return; field types; constructor argument types)
-
-
-
Class com.fasterxml.classmate.TypeResolver extends java.lang.Object implements Serializable
-
Serialized Fields
-
_resolvedTypes
ResolvedTypeCache _resolvedTypes
Simple cache of types resolved by this resolver. Caching works because type instances themselves are mostly immutable; and properly synchronized in cases where transient data (raw members) are accessed.
-
-
-
-
Package com.fasterxml.classmate.util
-
Class com.fasterxml.classmate.util.ClassKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
_class
java.lang.Class<?> _class
-
_className
java.lang.String _className
-
_hashCode
int _hashCode
Let's cache hash code straight away, since we are almost certain to need it.
-
-
-
Class com.fasterxml.classmate.util.ConcurrentTypeCache extends ResolvedTypeCache implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
java.lang.Object readResolve()
-
-
Serialized Fields
-
_maxEntries
int _maxEntries
-
-
Class com.fasterxml.classmate.util.LRUTypeCache extends ResolvedTypeCache implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
java.lang.Object readResolve()
-
-
Serialized Fields
-
_maxEntries
int _maxEntries
-
-
Class com.fasterxml.classmate.util.MethodKey extends java.lang.Object implements Serializable
-
Serialized Fields
-
_argumentTypes
java.lang.Class<?>[] _argumentTypes
-
_hashCode
int _hashCode
-
_name
java.lang.String _name
-
-
-
Class com.fasterxml.classmate.util.ResolvedTypeCache extends java.lang.Object implements Serializable
-