Serialized Form


Package com.fasterxml.classmate

Class com.fasterxml.classmate.AnnotationConfiguration extends Object implements Serializable

Class com.fasterxml.classmate.AnnotationConfiguration.StdConfiguration extends AnnotationConfiguration implements Serializable

Serialized Fields

_defaultInclusion

AnnotationInclusion _defaultInclusion

_inclusions

HashMap<K,V> _inclusions

Class com.fasterxml.classmate.AnnotationOverrides extends Object implements Serializable

Class com.fasterxml.classmate.AnnotationOverrides.StdImpl extends AnnotationOverrides implements Serializable

Serialized Fields

_targetsToOverrides

HashMap<K,V> _targetsToOverrides

Class com.fasterxml.classmate.Annotations extends Object implements Serializable

Serialized Fields

_annotations

HashMap<K,V> _annotations

Class com.fasterxml.classmate.GenericType extends Object implements Serializable

Class com.fasterxml.classmate.MemberResolver extends Object implements Serializable

Serialized Fields

_typeResolver

TypeResolver _typeResolver
Type resolved needed for resolving types of member objects (method argument and return; field types; constructor argument types)


_cfgIncludeLangObject

boolean _cfgIncludeLangObject
Configuration setting that determines whether members from Object are included or not; by default false meaning that they are not.


_fieldFilter

Filter<T> _fieldFilter
Filter used for determining whether given field (static or member) is to be included in aggregation of all fields.


_methodFilter

Filter<T> _methodFilter
Filter used for determining whether given method (static or member) is to be included in aggregation of all methods.


_constructorFilter

Filter<T> _constructorFilter
Filter used for determining whether given constructor is to be included in aggregation of all constructors.

Class com.fasterxml.classmate.TypeResolver extends Object implements Serializable

Serialized Fields

_resolvedTypes

ResolvedTypeCache _resolvedTypes
Simple cache of types resolved by this resolved; capped to last 200 resolved types. 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 Object implements Serializable

Serialized Fields

_className

String _className

_class

Class<T> _class

_hashCode

int _hashCode
Let's cache hash code straight away, since we are almost certain to need it.

Class com.fasterxml.classmate.util.MethodKey extends Object implements Serializable

Serialized Fields

_name

String _name

_argumentTypes

Class<T>[] _argumentTypes

_hashCode

int _hashCode

Class com.fasterxml.classmate.util.ResolvedTypeCache extends Object implements Serializable

Serialized Fields

_map

com.fasterxml.classmate.util.ResolvedTypeCache.CacheMap _map



Copyright © 2012 fasterxml.com. All Rights Reserved.