Skip navigation links
A B C D E F G H I M N O P R S T U V W 

A

AbstractBeanConverter<S,T> - Class in io.beanmapper.core.converter
Template implementation of a single type converter.
AbstractBeanConverter() - Constructor for class io.beanmapper.core.converter.AbstractBeanConverter
Construct a new bean converter, dynamically resolving the source and target class.
AbstractBeanConverter(Class<?>, Class<?>) - Constructor for class io.beanmapper.core.converter.AbstractBeanConverter
Construct a new bean converter, manually declaring the source and target class.
AbstractCollectionConverter<T> - Class in io.beanmapper.core.converter.collections
 
AbstractCollectionConverter() - Constructor for class io.beanmapper.core.converter.collections.AbstractCollectionConverter
 
addBeanMatch(BeanMatch) - Method in class io.beanmapper.core.BeanMatchStore
 
addConverter(BeanConverter) - Method in class io.beanmapper.BeanMapper
Add a converter class (must inherit from abstract BeanConverter class) to the beanMapper.
addPackagePrefix(Class<?>) - Method in class io.beanmapper.BeanMapper
Adds a package on the basis of a class.
addProxySkipClass(Class<?>) - Method in class io.beanmapper.BeanMapper
Add classes to skip while unproxying to prevent failing of the BeanMapper while mapping proxy classes or classes containing synthetic fields (Like ENUM types).
argument(boolean, String) - Static method in class io.beanmapper.utils.Check
 

B

BeanCollection - Annotation Type in io.beanmapper.annotations
Determines the type of the other side in a collection.
BeanCollectionInstructions - Class in io.beanmapper.core.converter.collections
 
BeanCollectionInstructions() - Constructor for class io.beanmapper.core.converter.collections.BeanCollectionInstructions
 
BeanCollectionNotSupportedException - Exception in io.beanmapper.exceptions
 
BeanCollectionNotSupportedException(Class, Class) - Constructor for exception io.beanmapper.exceptions.BeanCollectionNotSupportedException
 
BeanCollectionUsage - Enum in io.beanmapper.annotations
Determines how to deal with the target collection.
BeanConversionException - Exception in io.beanmapper.exceptions
Exception thrown when cannot convert between types.
BeanConversionException(Class<?>, Class<?>) - Constructor for exception io.beanmapper.exceptions.BeanConversionException
 
BeanConverter - Interface in io.beanmapper.core.converter
This class can be inherited if you want to add your own converter to the beanMapper.
BeanDefault - Annotation Type in io.beanmapper.annotations
When a result value of an invoked getter is null, the result will be overwritten by the value.
BeanField - Class in io.beanmapper.core
 
BeanField(String, PropertyAccessor) - Constructor for class io.beanmapper.core.BeanField
 
BeanFieldMatch - Class in io.beanmapper.core
 
BeanFieldMatch(Object, Object, BeanField, BeanField, String) - Constructor for class io.beanmapper.core.BeanFieldMatch
 
BeanFieldNoMatchException - Exception in io.beanmapper.exceptions
 
BeanFieldNoMatchException(String) - Constructor for exception io.beanmapper.exceptions.BeanFieldNoMatchException
 
BeanGetFieldException - Exception in io.beanmapper.exceptions
 
BeanGetFieldException(Class<?>, String) - Constructor for exception io.beanmapper.exceptions.BeanGetFieldException
 
BeanGetFieldException(Class<?>, String, Throwable) - Constructor for exception io.beanmapper.exceptions.BeanGetFieldException
 
BeanIgnore - Annotation Type in io.beanmapper.annotations
When a property is set to be ignored, it will not be mapped from the source to the target.
BeanInitializer - Interface in io.beanmapper.core.constructor
Abstraction that initializes beans.
BeanInstantiationException - Exception in io.beanmapper.exceptions
 
BeanInstantiationException(Class<?>, Throwable) - Constructor for exception io.beanmapper.exceptions.BeanInstantiationException
 
BeanMapper - Class in io.beanmapper
Class that is responsible first for understanding the semantics of the source and target objects.
BeanMapper() - Constructor for class io.beanmapper.BeanMapper
Construct a new bean mapper, with default converters.
BeanMapper(boolean) - Constructor for class io.beanmapper.BeanMapper
Construct a new bean mapper.
beanMapper - Variable in class io.beanmapper.core.converter.AbstractBeanConverter
 
BeanMapperConverterAdapter - Class in io.beanmapper
Adapter that allows the bean mapper to be used in the spring conversion service.
BeanMapperConverterAdapter(BeanMapper) - Constructor for class io.beanmapper.BeanMapperConverterAdapter
Construct a new instance.
BeanMappingException - Exception in io.beanmapper.exceptions
 
BeanMappingException(String) - Constructor for exception io.beanmapper.exceptions.BeanMappingException
 
BeanMappingException(String, Throwable) - Constructor for exception io.beanmapper.exceptions.BeanMappingException
 
BeanMatch - Class in io.beanmapper.core
 
BeanMatch(Class<?>, Class<?>, Map<String, BeanField>, Map<String, BeanField>) - Constructor for class io.beanmapper.core.BeanMatch
 
BeanMatchStore - Class in io.beanmapper.core
 
BeanMatchStore() - Constructor for class io.beanmapper.core.BeanMatchStore
 
BeanMissingPathException - Exception in io.beanmapper.exceptions
 
BeanMissingPathException(String) - Constructor for exception io.beanmapper.exceptions.BeanMissingPathException
 
BeanMissingPathException(Class<?>, String, Throwable) - Constructor for exception io.beanmapper.exceptions.BeanMissingPathException
 
BeanProperty - Annotation Type in io.beanmapper.annotations
Setting a name allows you to map the property to a property on the other side with a different name.
BeanSetFieldException - Exception in io.beanmapper.exceptions
 
BeanSetFieldException(Class<?>, String) - Constructor for exception io.beanmapper.exceptions.BeanSetFieldException
 
BeanSetFieldException(Class<?>, String, Throwable) - Constructor for exception io.beanmapper.exceptions.BeanSetFieldException
 
BeanUnproxy - Interface in io.beanmapper.core.unproxy
Strip proxies from bean classes.
BeanUnwrap - Annotation Type in io.beanmapper.annotations
When a property is set to unwrap, it will unwrap the internal values of the other side and apply it to the same level of the annotated side.

C

Check - Class in io.beanmapper.utils
Performs assertions in code.
Check() - Constructor for class io.beanmapper.utils.Check
 
Classes - Class in io.beanmapper.utils
Reflection utilities.
Classes() - Constructor for class io.beanmapper.utils.Classes
 
CollectionListConverter - Class in io.beanmapper.core.converter.collections
 
CollectionListConverter() - Constructor for class io.beanmapper.core.converter.collections.CollectionListConverter
 
CollectionMapConverter - Class in io.beanmapper.core.converter.collections
 
CollectionMapConverter() - Constructor for class io.beanmapper.core.converter.collections.CollectionMapConverter
 
CollectionSetConverter - Class in io.beanmapper.core.converter.collections
 
CollectionSetConverter() - Constructor for class io.beanmapper.core.converter.collections.CollectionSetConverter
 
CombinedPropertyAccessor - Class in io.beanmapper.core.inspector
Property accessor that looks at both the getter/setter methods and also at fields.
CombinedPropertyAccessor(PropertyDescriptor, Field) - Constructor for class io.beanmapper.core.inspector.CombinedPropertyAccessor
 
convert(Object, Class, BeanFieldMatch) - Method in class io.beanmapper.BeanMapper
Converts a value into the target class.
convert(Object, TypeDescriptor, TypeDescriptor) - Method in class io.beanmapper.BeanMapperConverterAdapter
convert(Object, Class<?>, BeanFieldMatch) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
Converts the source instance into the desired target type.
convert(Object, Class<?>, BeanFieldMatch) - Method in interface io.beanmapper.core.converter.BeanConverter
Converts the source instance into the desired target type.
convert(Object, Class<?>, BeanFieldMatch) - Method in class io.beanmapper.core.converter.collections.AbstractCollectionConverter
 
convert(Object, Class<?>, BeanFieldMatch) - Method in class io.beanmapper.core.converter.impl.NumberToNumberConverter
Converts the source instance into the desired target type.
convert(Object, Class<?>, BeanFieldMatch) - Method in class io.beanmapper.core.converter.impl.PrimitiveConverter
Converts the source instance into the desired target type.
convert(Object, Class<?>, BeanFieldMatch) - Method in class io.beanmapper.core.converter.impl.SpringBeanConverter
Converts the source instance into the desired target type.
createCollection() - Method in class io.beanmapper.core.converter.collections.AbstractCollectionConverter
 
createCollection() - Method in class io.beanmapper.core.converter.collections.CollectionListConverter
 
createCollection() - Method in class io.beanmapper.core.converter.collections.CollectionMapConverter
 
createCollection() - Method in class io.beanmapper.core.converter.collections.CollectionSetConverter
 

D

DefaultBeanUnproxy - Class in io.beanmapper.core.unproxy
Default (simple) implementation of bean unproxy.
DefaultBeanUnproxy() - Constructor for class io.beanmapper.core.unproxy.DefaultBeanUnproxy
 
determineNodesForPath(Class<?>, String) - Static method in class io.beanmapper.core.BeanField
 
determineNodesForPath(Class<?>, String, BeanField) - Static method in class io.beanmapper.core.BeanField
 
doConvert(S, Class<? extends T>) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
Convert a source instance to the target type.
doConvert(Object) - Method in class io.beanmapper.core.converter.impl.ObjectToStringConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToBigDecimalConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToBooleanConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToByteConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToDoubleConverter
Convert the source instance into our target type.
doConvert(String, Class<? extends Enum<?>>) - Method in class io.beanmapper.core.converter.impl.StringToEnumConverter
Convert a source instance to the target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToFloatConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToIntegerConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToLongConverter
Convert the source instance into our target type.
doConvert(String) - Method in class io.beanmapper.core.converter.impl.StringToShortConverter
Convert the source instance into our target type.
doConvert(S, Class<? extends T>) - Method in class io.beanmapper.core.converter.SimpleBeanConverter
Convert a source instance to the target type.
doConvert(S) - Method in class io.beanmapper.core.converter.SimpleBeanConverter
Convert the source instance into our target type.

E

ERROR - Static variable in exception io.beanmapper.exceptions.BeanCollectionNotSupportedException
 
ERROR - Static variable in exception io.beanmapper.exceptions.BeanConversionException
 
ERROR - Static variable in exception io.beanmapper.exceptions.BeanGetFieldException
 
ERROR - Static variable in exception io.beanmapper.exceptions.BeanInstantiationException
 
ERROR - Static variable in exception io.beanmapper.exceptions.BeanMissingPathException
 
ERROR - Static variable in exception io.beanmapper.exceptions.BeanSetFieldException
 

F

FieldPropertyAccessor - Class in io.beanmapper.core.inspector
 
FieldPropertyAccessor(Field) - Constructor for class io.beanmapper.core.inspector.FieldPropertyAccessor
 
findAnnotation(Class<A>) - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Retrieve the annotation on a property.
findAnnotation(Class<A>) - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Retrieve the annotation on a property.
findAnnotation(Class<A>) - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Retrieve the annotation on a property.
findAnnotation(Class<A>) - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Retrieve the annotation on a property.
findProperty(Class<?>, String) - Static method in class io.beanmapper.core.inspector.PropertyAccessors
Retrieve a specific property accessor.
forName(String) - Static method in class io.beanmapper.utils.Classes
Retrieve the class by name.

G

getAll(Class<?>) - Static method in class io.beanmapper.core.inspector.PropertyAccessors
Retrieve all property accessors that relate to a bean.
getBeanCollectionUsage() - Method in class io.beanmapper.core.converter.collections.BeanCollectionInstructions
 
getBeanMatch(Class<?>, Class<?>) - Method in class io.beanmapper.core.BeanMatchStore
 
getCollectionInstructions() - Method in class io.beanmapper.core.BeanField
 
getCollectionInstructions() - Method in class io.beanmapper.core.BeanFieldMatch
 
getCollectionMapsTo() - Method in class io.beanmapper.core.converter.collections.BeanCollectionInstructions
 
getConvertibleTypes() - Method in class io.beanmapper.BeanMapperConverterAdapter
getCurrentField() - Method in class io.beanmapper.core.BeanField
 
getDefaultValue(BeanField) - Method in class io.beanmapper.core.BeanFieldMatch
 
getName() - Method in class io.beanmapper.core.BeanField
 
getName() - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Retrieve the property name.
getName() - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Retrieve the property name.
getName() - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Retrieve the property name.
getName() - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Retrieve the property name.
getNext() - Method in class io.beanmapper.core.BeanField
 
getObject(Object) - Method in class io.beanmapper.core.BeanField
 
getOrCreate(Object) - Method in class io.beanmapper.core.BeanField
 
getOrCreateTargetObject() - Method in class io.beanmapper.core.BeanFieldMatch
 
getParameteredTypes(Class<?>) - Static method in class io.beanmapper.utils.Classes
Retrieve the parametered types of a class.
getProperty() - Method in class io.beanmapper.core.BeanField
 
getRoute() - Method in class io.beanmapper.core.Route
 
getSourceClass() - Method in class io.beanmapper.core.BeanFieldMatch
 
getSourceClass() - Method in class io.beanmapper.core.BeanMatch
 
getSourceDefaultValue() - Method in class io.beanmapper.core.BeanFieldMatch
 
getSourceNode() - Method in class io.beanmapper.core.BeanMatch
 
getSourceObject() - Method in class io.beanmapper.core.BeanFieldMatch
 
getTarget() - Method in class io.beanmapper.core.BeanFieldMatch
 
getTargetClass() - Method in class io.beanmapper.core.BeanFieldMatch
 
getTargetClass() - Method in class io.beanmapper.core.BeanMatch
 
getTargetDefaultValue() - Method in class io.beanmapper.core.BeanFieldMatch
 
getTargetFieldName() - Method in class io.beanmapper.core.BeanFieldMatch
 
getTargetNode() - Method in class io.beanmapper.core.BeanMatch
 
getTargetObject() - Method in class io.beanmapper.core.BeanFieldMatch
 
getType() - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Retrieve the property type.
getType() - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Retrieve the property type.
getType() - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Retrieve the property type.
getType() - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Retrieve the property type.
getValue(Object) - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Retrieve the property value.
getValue(Object) - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Retrieve the property value.
getValue(Object) - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Retrieve the property value.
getValue(Object) - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Retrieve the property value.

H

hasAnnotation(BeanField, Class<? extends Annotation>) - Method in class io.beanmapper.core.BeanFieldMatch
 
hasMatchingSource() - Method in class io.beanmapper.core.BeanFieldMatch
 
hasNext() - Method in class io.beanmapper.core.BeanField
 
hasSimilarClasses() - Method in class io.beanmapper.core.BeanFieldMatch
 

I

instantiate(Class<T>) - Method in interface io.beanmapper.core.constructor.BeanInitializer
Initialize a new bean.
instantiate(Class<T>) - Method in class io.beanmapper.core.constructor.NoArgConstructorBeanInitializer
Initialize a new bean.
io.beanmapper - package io.beanmapper
 
io.beanmapper.annotations - package io.beanmapper.annotations
 
io.beanmapper.core - package io.beanmapper.core
 
io.beanmapper.core.constructor - package io.beanmapper.core.constructor
 
io.beanmapper.core.converter - package io.beanmapper.core.converter
 
io.beanmapper.core.converter.collections - package io.beanmapper.core.converter.collections
 
io.beanmapper.core.converter.impl - package io.beanmapper.core.converter.impl
 
io.beanmapper.core.inspector - package io.beanmapper.core.inspector
 
io.beanmapper.core.unproxy - package io.beanmapper.core.unproxy
 
io.beanmapper.exceptions - package io.beanmapper.exceptions
 
io.beanmapper.utils - package io.beanmapper.utils
 
isMappable() - Method in class io.beanmapper.core.BeanFieldMatch
 
isMatchingSource(Class<?>) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
 
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
 
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToBooleanConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToByteConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToDoubleConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToFloatConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToIntegerConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToLongConverter
isMatchingTarget(Class<?>) - Method in class io.beanmapper.core.converter.impl.StringToShortConverter
isReadable() - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Determine if the property is readable.
isReadable() - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Determine if the property is readable.
isReadable() - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Determine if the property is readable.
isReadable() - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Determine if the property is readable.
isWritable() - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Determine if the property is writable.
isWritable() - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Determine if the property is writable.
isWritable() - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Determine if the property is writable.
isWritable() - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Determine if the property is writable.

M

map(S, Class<T>) - Method in class io.beanmapper.BeanMapper
Copies the values from the source object to a newly constructed target instance
map(S, Class<T>, BeanInitializer, boolean) - Method in class io.beanmapper.BeanMapper
Copies the values from the source object to a newly constructed target instance
map(Collection<S>, Class<T>) - Method in class io.beanmapper.BeanMapper
Maps a list of source items to a list of target items with a specific class
map(S, T) - Method in class io.beanmapper.BeanMapper
Copies the values from the source object to an existing target instance
mapForListElement(S, Class<T>) - Method in class io.beanmapper.BeanMapper
 
match(Class<?>, Class<?>) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
Determines if the conversion of our source type to a target type is supported by this converter.
match(Class<?>, Class<?>) - Method in interface io.beanmapper.core.converter.BeanConverter
Determines if the conversion of our source type to a target type is supported by this converter.
match(Class<?>, Class<?>) - Method in class io.beanmapper.core.converter.collections.AbstractCollectionConverter
 
match(Class<?>, Class<?>) - Method in class io.beanmapper.core.converter.impl.NumberToNumberConverter
Determines if the conversion of our source type to a target type is supported by this converter.
match(Class<?>, Class<?>) - Method in class io.beanmapper.core.converter.impl.PrimitiveConverter
Determines if the conversion of our source type to a target type is supported by this converter.
match(Class<?>, Class<?>) - Method in class io.beanmapper.core.converter.impl.SpringBeanConverter
Determines if the conversion of our source type to a target type is supported by this converter.

N

NoArgConstructorBeanInitializer - Class in io.beanmapper.core.constructor
 
NoArgConstructorBeanInitializer() - Constructor for class io.beanmapper.core.constructor.NoArgConstructorBeanInitializer
 
NoSuchPropertyException - Exception in io.beanmapper.exceptions
Exception thrown when a property could not be found.
NoSuchPropertyException(String) - Constructor for exception io.beanmapper.exceptions.NoSuchPropertyException
 
NumberToNumberConverter - Class in io.beanmapper.core.converter.impl
Converts any number to another number type.
NumberToNumberConverter() - Constructor for class io.beanmapper.core.converter.impl.NumberToNumberConverter
 

O

ObjectToStringConverter - Class in io.beanmapper.core.converter.impl
Converts objects into strings.
ObjectToStringConverter() - Constructor for class io.beanmapper.core.converter.impl.ObjectToStringConverter
 

P

PrimitiveConverter - Class in io.beanmapper.core.converter.impl
Converter between boxed and primitive type.
PrimitiveConverter() - Constructor for class io.beanmapper.core.converter.impl.PrimitiveConverter
 
PropertyAccessor - Interface in io.beanmapper.core.inspector
Abstraction over accessing properties.
PropertyAccessors - Class in io.beanmapper.core.inspector
Accessor utilities.
PropertyAccessors() - Constructor for class io.beanmapper.core.inspector.PropertyAccessors
 
PropertyDescriptorPropertyAccessor - Class in io.beanmapper.core.inspector
Property descriptor implementation of property accessor.
PropertyDescriptorPropertyAccessor(PropertyDescriptor) - Constructor for class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
 

R

Route - Class in io.beanmapper.core
 
Route(String) - Constructor for class io.beanmapper.core.Route
 

S

setBeanCollectionUsage(BeanCollectionUsage) - Method in class io.beanmapper.core.converter.collections.BeanCollectionInstructions
 
setBeanInitializer(BeanInitializer) - Method in class io.beanmapper.BeanMapper
 
setBeanMapper(BeanMapper) - Method in class io.beanmapper.core.converter.AbstractBeanConverter
 
setBeanMapper(BeanMapper) - Method in interface io.beanmapper.core.converter.BeanConverter
 
setBeanMapper(BeanMapper) - Method in class io.beanmapper.core.converter.collections.AbstractCollectionConverter
 
setBeanMapper(BeanMapper) - Method in class io.beanmapper.core.converter.impl.NumberToNumberConverter
 
setBeanMapper(BeanMapper) - Method in class io.beanmapper.core.converter.impl.PrimitiveConverter
 
setBeanMapper(BeanMapper) - Method in class io.beanmapper.core.converter.impl.SpringBeanConverter
 
setBeanUnproxy(BeanUnproxy) - Method in class io.beanmapper.BeanMapper
 
setCollectionInstructions(BeanCollectionInstructions) - Method in class io.beanmapper.core.BeanField
 
setCollectionMapsTo(Class) - Method in class io.beanmapper.core.converter.collections.BeanCollectionInstructions
 
setDelegate(BeanUnproxy) - Method in class io.beanmapper.core.unproxy.SkippingBeanUnproxy
Change the underlying delegate bean unproxy.
setNext(BeanField) - Method in class io.beanmapper.core.BeanField
 
setTarget(Object) - Method in class io.beanmapper.core.BeanFieldMatch
 
setValue(Object, Object) - Method in class io.beanmapper.core.inspector.CombinedPropertyAccessor
Modify the property value.
setValue(Object, Object) - Method in class io.beanmapper.core.inspector.FieldPropertyAccessor
Modify the property value.
setValue(Object, Object) - Method in interface io.beanmapper.core.inspector.PropertyAccessor
Modify the property value.
setValue(Object, Object) - Method in class io.beanmapper.core.inspector.PropertyDescriptorPropertyAccessor
Modify the property value.
SimpleBeanConverter<S,T> - Class in io.beanmapper.core.converter
Default converter that should be used for single type-to-type conversions.
SimpleBeanConverter() - Constructor for class io.beanmapper.core.converter.SimpleBeanConverter
Construct a new bean converter, dynamically resolving the source and target class.
SimpleBeanConverter(Class<?>, Class<?>) - Constructor for class io.beanmapper.core.converter.SimpleBeanConverter
Construct a new bean converter, manually declaring the source and target class.
skip(Class<?>) - Method in class io.beanmapper.core.unproxy.SkippingBeanUnproxy
Add classes to skip while unproxying to prevent failing of the BeanMapper while mapping proxy classes or classes containing synthetic fields (Like ENUM types).
SkippingBeanUnproxy - Class in io.beanmapper.core.unproxy
Unproxy that allows you to configure classes to skip.
SkippingBeanUnproxy(BeanUnproxy) - Constructor for class io.beanmapper.core.unproxy.SkippingBeanUnproxy
 
sourceHasAnnotation(Class<? extends Annotation>) - Method in class io.beanmapper.core.BeanFieldMatch
 
SpringBeanConverter - Class in io.beanmapper.core.converter.impl
Spring based bean converter adapter.
SpringBeanConverter(ConversionService) - Constructor for class io.beanmapper.core.converter.impl.SpringBeanConverter
Construct a new SpringBeanConverter.
StringToBigDecimalConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a big decimal.
StringToBigDecimalConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToBigDecimalConverter
 
StringToBooleanConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a boolean.
StringToBooleanConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToBooleanConverter
 
StringToByteConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a byte.
StringToByteConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToByteConverter
 
StringToDoubleConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a double.
StringToDoubleConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToDoubleConverter
 
StringToEnumConverter - Class in io.beanmapper.core.converter.impl
Converts a string into an enumeration.
StringToEnumConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToEnumConverter
 
StringToFloatConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a float.
StringToFloatConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToFloatConverter
 
StringToIntegerConverter - Class in io.beanmapper.core.converter.impl
Converts a string into an integer.
StringToIntegerConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToIntegerConverter
 
StringToLongConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a long.
StringToLongConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToLongConverter
 
StringToShortConverter - Class in io.beanmapper.core.converter.impl
Converts a string into a short.
StringToShortConverter() - Constructor for class io.beanmapper.core.converter.impl.StringToShortConverter
 

T

targetHasAnnotation(Class<? extends Annotation>) - Method in class io.beanmapper.core.BeanFieldMatch
 

U

unproxy(Class<?>) - Method in interface io.beanmapper.core.unproxy.BeanUnproxy
Removes any potential proxy classes.
unproxy(Class<?>) - Method in class io.beanmapper.core.unproxy.DefaultBeanUnproxy
Removes any potential proxy classes.
unproxy(Class<?>) - Method in class io.beanmapper.core.unproxy.SkippingBeanUnproxy
Removes any potential proxy classes.

V

valueOf(String) - Static method in enum io.beanmapper.annotations.BeanCollectionUsage
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.beanmapper.annotations.BeanCollectionUsage
Returns an array containing the constants of this enum type, in the order they are declared.

W

writeObject(Object, Object) - Method in class io.beanmapper.core.BeanField
 
writeObject(Object) - Method in class io.beanmapper.core.BeanFieldMatch
 
A B C D E F G H I M N O P R S T U V W 
Skip navigation links

Copyright © 2015 42 BV. All Rights Reserved.