A C E F G H I J L M N O P S T U V W 

A

AbstractCondition<S,D> - Class in org.modelmapper
Condition support class.
AbstractCondition() - Constructor for class org.modelmapper.AbstractCondition
 
AbstractConverter<S,D> - Class in org.modelmapper
Converter support class.
AbstractConverter() - Constructor for class org.modelmapper.AbstractConverter
 
AbstractProvider<T> - Class in org.modelmapper
Provider support class.
AbstractProvider() - Constructor for class org.modelmapper.AbstractProvider
 
addConverter(Converter<S, D>) - Method in class org.modelmapper.ModelMapper
Registers the converter to use when mapping instances of types S to D.
addMappings(PropertyMap<S, D>) - Method in class org.modelmapper.ModelMapper
Adds mappings from the propertyMap into the TypeMap corresponding to source type S and destination type D.
addMappings(PropertyMap<S, D>) - Method in interface org.modelmapper.TypeMap
Loads mappings from the propertyMap into the TypeMap.
addValueReader(ValueReader<T>) - Method in interface org.modelmapper.config.Configuration
Registers the valueReader to use when mapping from instances of types T.
and(Condition<S, D>) - Method in class org.modelmapper.AbstractCondition
Returns a new condition that applies if this AND the given condition apply.
and(Condition<S, D>, Condition<S, D>) - Static method in class org.modelmapper.Conditions
Returns a new condition that applies if condition1 AND condition2 apply.
applies(MappingContext<S, D>) - Method in interface org.modelmapper.Condition
Specifies whether the condition applies to the context.
applies(String, PropertyType) - Method in interface org.modelmapper.spi.NamingConvention
Returns true if the naming convention applies to the propertyName and propertyType, else returns false.

C

CAMEL_CASE - Static variable in class org.modelmapper.convention.NameTokenizers
Tokenizes class and property names according to the CamelCase naming convention.
Condition<S,D> - Interface in org.modelmapper
Condition that must apply in order for mapping to occur.
ConditionalConverter<S,D> - Interface in org.modelmapper.spi
Conditionally converts matching source objects to instances of destination type D.
ConditionalConverter.MatchResult - Enum in org.modelmapper.spi
 
ConditionExpression<S,D> - Interface in org.modelmapper.builder
Expresses a Condition.
Conditions - Class in org.modelmapper
Condition utilities and implementations.
Conditions() - Constructor for class org.modelmapper.Conditions
 
Configuration - Interface in org.modelmapper.config
Configures conventions used during the matching process.
Configuration.AccessLevel - Enum in org.modelmapper.config
The level at and below which properties can be accessed.
ConfigurationException - Exception in org.modelmapper
Thrown when invalid configuration is detected.
ConfigurationException(List<ErrorMessage>) - Constructor for exception org.modelmapper.ConfigurationException
 
configure() - Method in class org.modelmapper.PropertyMap
Called by ModelMapper to configure mappings as defined in the PropertyMap.
ConstantMapping - Interface in org.modelmapper.spi
A mapping of a source constant to a destination property hierarchy.
convert(MappingContext<S, D>) - Method in class org.modelmapper.AbstractConverter
Delegates conversion to AbstractConverter.convert(Object).
convert(S) - Method in class org.modelmapper.AbstractConverter
Converts source to an instance of type D.
convert(MappingContext<S, D>) - Method in interface org.modelmapper.Converter
Converter<S,D> - Interface in org.modelmapper
Converts instances of source type S to instances of destination type D.
ConverterExpression<S,D> - Interface in org.modelmapper.builder
Expresses a Converter.
copy() - Method in interface org.modelmapper.config.Configuration
Returns a copy of the Configuration.
create(CS, Class<CD>) - Method in interface org.modelmapper.spi.MappingContext
Creates a new child MappingContext for the source and destinationType which inherits all other information from the this MappingContext.
create(CS, Type) - Method in interface org.modelmapper.spi.MappingContext
Creates a new child MappingContext for the source and destinationType which inherits all other information from the this MappingContext.
createDestination(MappingContext<S, D>) - Method in interface org.modelmapper.spi.MappingEngine
Creates an instance of the destination type for the context, capturing any errors that may occur during instantiation.
createTypeMap(Class<S>, Class<D>) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the sourceType and destinationType using the ModelMapper's configuration.
createTypeMap(Class<S>, Class<D>, Configuration) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the sourceType and destinationType using the configuration.
createTypeMap(Class<S>, Class<D>, String) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the sourceType and destinationType identified by the typeMapName using the ModelMapper's configuration.
createTypeMap(Class<S>, Class<D>, String, Configuration) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the sourceType and destinationType identified by the typeMapName using the configuration.
createTypeMap(S, Class<D>) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the source's type and destinationType using the ModelMapper's configuration.
createTypeMap(S, Class<D>, Configuration) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the source's type and destinationType using the configuration.
createTypeMap(S, Class<D>, String) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the source's type and destinationType identified by the typeMapName using the ModelMapper's configuration.
createTypeMap(S, Class<D>, String, Configuration) - Method in class org.modelmapper.ModelMapper
Creates a TypeMap for the source's type and destinationType identified by the typeMapName using the configuration.

E

equals(Object) - Method in class org.modelmapper.spi.ErrorMessage
 
equals(Object) - Method in class org.modelmapper.TypeToken
 
ErrorMessage - Class in org.modelmapper.spi
An error message.
ErrorMessage(String) - Constructor for class org.modelmapper.spi.ErrorMessage
Creates an ErrorMessage for the given message.
ErrorMessage(String, Throwable) - Constructor for class org.modelmapper.spi.ErrorMessage
Creates an ErrorMessage for the given message and cause.

F

forPropertyType(PropertyType) - Static method in enum org.modelmapper.spi.NameableType
Returns a NameableType for the corresponding propertyType, else NameableType.CLASS.

G

get(Provider.ProvisionRequest<T>) - Method in class org.modelmapper.AbstractProvider
Delegates provisioning to AbstractProvider.get().
get() - Method in class org.modelmapper.AbstractProvider
Provides an instance of type T.
get(Provider.ProvisionRequest<T>) - Method in interface org.modelmapper.Provider
Returns an instance of the requested type T else null if the requested type cannot be provided.
get(T, String) - Method in interface org.modelmapper.spi.ValueReader
Returns the value from the source object for the memberName.
getAnnotation(Class<T>) - Method in interface org.modelmapper.spi.PropertyInfo
Returns the annotation on the property's member for the annotationClass or null if none exists.
getCause() - Method in class org.modelmapper.spi.ErrorMessage
Returns the Throwable that caused the error or null if no Throwable caused the error.
getCondition() - Method in interface org.modelmapper.spi.Mapping
Gets the condition that to be satisfied before this mapping can be used to perform a mapping.
getCondition() - Method in interface org.modelmapper.TypeMap
Returns the Condition that must apply for the source and destination in order for mapping to take place, else null if no condition has been configured.
getConfiguration() - Method in class org.modelmapper.ModelMapper
Returns the ModelMapper's configuration.
getConstant() - Method in interface org.modelmapper.spi.ConstantMapping
Gets the source constant for the mapping.
getConverter() - Method in interface org.modelmapper.spi.Mapping
Gets the Converter to be used when performing a mapping.
getConverter() - Method in interface org.modelmapper.TypeMap
Returns the Converter configured for this TypeMap, else null if no Converter has been configured.
getConverters() - Method in interface org.modelmapper.config.Configuration
Gets the ordered list of internal conditional converters that are used to perform type conversion.
getDestination() - Method in interface org.modelmapper.spi.MappingContext
Returns the destination object being mapped to or null if the destination has not yet been initialized.
getDestinationNameTokenizer() - Method in interface org.modelmapper.config.Configuration
Returns the destination name tokenizer.
getDestinationNameTransformer() - Method in interface org.modelmapper.config.Configuration
Returns the destination name transformer.
getDestinationNamingConvention() - Method in interface org.modelmapper.config.Configuration
Returns the destination naming convention.
getDestinationProperties() - Method in interface org.modelmapper.spi.Mapping
Get the hierarchy of destination property info.
getDestinationProperties() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns the destination properties.
getDestinationPropertyTokens() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns transformed name tokens for the destination property.
getDestinationType() - Method in interface org.modelmapper.spi.MappingContext
Returns the destination type being mapped to.
getDestinationType() - Method in interface org.modelmapper.TypeMap
Returns the destination type for the TypeMap.
getErrorMessages() - Method in exception org.modelmapper.ConfigurationException
Returns messages for the errors that caused this exception.
getErrorMessages() - Method in exception org.modelmapper.MappingException
Returns messages for the errors that caused this exception.
getErrorMessages() - Method in exception org.modelmapper.ValidationException
Returns messages for the errors that caused this exception.
getFieldAccessLevel() - Method in interface org.modelmapper.config.Configuration
Returns the field access level.
getGenericDestinationType() - Method in interface org.modelmapper.spi.MappingContext
Returns the generic destination type.
getGenericType() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the generic type represented by the property.
getInitialType() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the initial type in the member declaring class' type hierarchy from which this property info was initiated.
getLastDestinationProperty() - Method in interface org.modelmapper.spi.Mapping
Gets the last property info in the destination properties hierarchy.
getLastSourceProperty() - Method in interface org.modelmapper.spi.PropertyMapping
Gets the last member info in the source members hierarchy.
getMapping() - Method in interface org.modelmapper.spi.MappingContext
Returns the mapping associated with the mapping request else null if the request did not originate from a TypeMap.
getMappingEngine() - Method in interface org.modelmapper.spi.MappingContext
Returns the MappingEngine that initiated the mapping request.
getMappings() - Method in interface org.modelmapper.TypeMap
Returns a snapshot of the TypeMap's mappings.
getMatchingStrategy() - Method in interface org.modelmapper.config.Configuration
Gets the matching strategy.
getMember() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the encapsulated member or null if none exists.
getMessage() - Method in exception org.modelmapper.ConfigurationException
getMessage() - Method in exception org.modelmapper.MappingException
getMessage() - Method in class org.modelmapper.spi.ErrorMessage
Returns the error message.
getMessage() - Method in exception org.modelmapper.ValidationException
getMethodAccessLevel() - Method in interface org.modelmapper.config.Configuration
Returns the method access level.
getName() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the property name.
getName() - Method in interface org.modelmapper.TypeMap
Returns the name of the TypeMap, else null if the TypeMap has no name.
getParent() - Method in interface org.modelmapper.spi.MappingContext
Returns the parent MappingContext from which the current MappingContext was created, else null if there is no parent context.
getPostConverter() - Method in interface org.modelmapper.TypeMap
Returns the converter to be used after mapping between the source and destination types, else null if no post-Converter has been configured.
getPreConverter() - Method in interface org.modelmapper.TypeMap
Returns the converter to be used before mapping between the source and destination types, else null if no post-Converter has been configured.
getPropertyCondition() - Method in interface org.modelmapper.config.Configuration
Returns the Condition that must apply for a property in order for mapping to take place, else null if no condition has been configured.
getPropertyCondition() - Method in interface org.modelmapper.TypeMap
Returns the Condition that must apply in properties in this TypeMap to be mapped, else null if no condition has been configured.
getPropertyConverter() - Method in interface org.modelmapper.TypeMap
Returns the Converter used for converting properties in the TypeMap, else null if no Converter has been configured.
getPropertyProvider() - Method in interface org.modelmapper.TypeMap
Returns the Provider configured for this TypeMap, else null if no Provider has been configured.
getPropertyType() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the member type.
getProvider() - Method in interface org.modelmapper.config.Configuration
Returns the Provider used for provisioning destination object instances, else null if no Provider has been configured.
getProvider() - Method in interface org.modelmapper.spi.Mapping
Gets the Provider to use for providing instances of the first destination type.
getProvider() - Method in interface org.modelmapper.TypeMap
Returns the Provider configured for this TypeMap, else null if no Provider has been configured.
getRawType() - Method in class org.modelmapper.TypeToken
Returns the raw type for T.
getRequestedType() - Method in interface org.modelmapper.Provider.ProvisionRequest
Returns the type being requested.
getSource() - Method in interface org.modelmapper.Provider.ProvisionRequest
Returns the source object being mapped from.
getSource() - Method in interface org.modelmapper.spi.MappingContext
Returns the source object being mapped from.
getSourceClassTokens() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns transformed name tokens for the source's declaring class.
getSourceNameTokenizer() - Method in interface org.modelmapper.config.Configuration
Returns the source name tokenizer.
getSourceNameTransformer() - Method in interface org.modelmapper.config.Configuration
Returns the source name transformer.
getSourceNamingConvention() - Method in interface org.modelmapper.config.Configuration
Gets the source naming convention.
getSourceProperties() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns the source properties.
getSourceProperties() - Method in interface org.modelmapper.spi.PropertyMapping
Get the hierarchy of source properties.
getSourcePropertyTokens() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns transformed name tokens for the source property.
getSourcePropertyTypeTokens() - Method in interface org.modelmapper.spi.MatchingStrategy.PropertyNameInfo
Returns transformed name tokens for each source property type.
getSourceType() - Method in interface org.modelmapper.spi.MappingContext
Returns the source type being mapped from.
getSourceType() - Method in interface org.modelmapper.spi.SourceMapping
Gets the source object type.
getSourceType() - Method in interface org.modelmapper.TypeMap
Returns the source type for the TypeMap.
getType() - Method in interface org.modelmapper.spi.PropertyInfo
Returns the type represented by the property.
getType() - Method in class org.modelmapper.TypeToken
Returns the generic type T.
getTypeMap(Class<S>, Class<D>) - Method in class org.modelmapper.ModelMapper
Returns the TypeMap for the sourceType and destinationType, else returns null if none exists.
getTypeMap(Class<S>, Class<D>, String) - Method in class org.modelmapper.ModelMapper
Returns the TypeMap for the sourceType, destinationType and typeMapName , else returns null if none exists.
getTypeMap() - Method in interface org.modelmapper.spi.MappingContext
Returns the TypeMap associated with the mapping request else null if the request did not originate from a TypeMap.
getTypeMapName() - Method in interface org.modelmapper.spi.MappingContext
Returns the name of the TypeMap associated with the mapping request else null if the request did not originate from a named TypeMap.
getTypeMaps() - Method in class org.modelmapper.ModelMapper
Returns all TypeMaps for the ModelMapper.
getUnmappedProperties() - Method in interface org.modelmapper.TypeMap
Returns a snapshot list of destination properties that do not have mappings defined, else empty list if all destination properties are mapped.
getValueReaders() - Method in interface org.modelmapper.config.Configuration
Gets a thread-safe, mutable, ordered list of internal and user-defined ValueReaders that are used to read source object values during mapping.

H

hashCode() - Method in class org.modelmapper.spi.ErrorMessage
 
hashCode() - Method in class org.modelmapper.TypeToken
 

I

isAmbiguityIgnored() - Method in interface org.modelmapper.config.Configuration
Returns true if ambiguous properties are ignored or false if they will result in an exception.
isExact() - Method in interface org.modelmapper.spi.MatchingStrategy
Indicates whether the matching strategy determines exact matches that are guaranteed not to be ambiguous with any other source and destination properties in the object graph.
isFieldMatchingEnabled() - Method in interface org.modelmapper.config.Configuration
Returns whether field matching is enabled.
isFullTypeMatchingRequired() - Method in interface org.modelmapper.config.Configuration
Returns true if ConditionalConverters must define a full match in order to be applied.
isImplicitMappingEnabled() - Method in interface org.modelmapper.config.Configuration
Returns whether implicit mapping should be enabled.
isNotNull() - Static method in class org.modelmapper.Conditions
Returns a condition that applies when the mapping source is not null.
isNull() - Static method in class org.modelmapper.Conditions
Returns a condition that applies when the mapping source is null.
isSkipped() - Method in interface org.modelmapper.spi.Mapping
Returns whether the destination should be skipped when performing a mapping.
isType(Class<?>) - Static method in class org.modelmapper.Conditions
Returns a condition that applies when the mapping source is of the type type.

J

JAVABEANS_ACCESSOR - Static variable in class org.modelmapper.convention.NameTransformers
Transforms accessor names to their simple property name according to the JavaBeans convention.
JAVABEANS_ACCESSOR - Static variable in class org.modelmapper.convention.NamingConventions
JavaBeans naming convention for accessors.
JAVABEANS_MUTATOR - Static variable in class org.modelmapper.convention.NameTransformers
Transforms mutator names to their simple property name according to the JavaBeans convention.
JAVABEANS_MUTATOR - Static variable in class org.modelmapper.convention.NamingConventions
JavaBeans naming convention for mutators.

L

LOOSE - Static variable in class org.modelmapper.convention.MatchingStrategies
A matching strategy that allows for source properties to be loosely matched to destination properties by requiring that only the last destination property in a hierarchy be matched.

M

map() - Method in interface org.modelmapper.builder.MapExpression
Defines a mapping to a destination.
map(Object) - Method in interface org.modelmapper.builder.MapExpression
Defines a mapping from the source to a destination.
map(Object, Class<D>) - Method in class org.modelmapper.ModelMapper
Maps source to an instance of destinationType.
map(Object, Class<D>, String) - Method in class org.modelmapper.ModelMapper
Maps source to an instance of destinationType.
map(Object, Object) - Method in class org.modelmapper.ModelMapper
Maps source to destination.
map(Object, Object, String) - Method in class org.modelmapper.ModelMapper
Maps source to destination.
map(Object, Type) - Method in class org.modelmapper.ModelMapper
Maps source to an instance of destinationType.
map(Object, Type, String) - Method in class org.modelmapper.ModelMapper
Maps source to an instance of destinationType.
map() - Method in class org.modelmapper.PropertyMap
Defines a mapping to a destination.
map(Object) - Method in class org.modelmapper.PropertyMap
Defines a mapping from the source to a destination.
map(MappingContext<S, D>) - Method in interface org.modelmapper.spi.MappingEngine
Maps an instance of type D for the context.
map(S) - Method in interface org.modelmapper.TypeMap
Maps source to an instance of type D.
map(S, D) - Method in interface org.modelmapper.TypeMap
Maps source to destination.
MapExpression<D> - Interface in org.modelmapper.builder
Expresses mapping.
Mapping - Interface in org.modelmapper.spi
Mapping to a destination property hierarchy.
MappingContext<S,D> - Interface in org.modelmapper.spi
Maintains context during the mapping of a source object of type S to a destination object of type D.
MappingEngine - Interface in org.modelmapper.spi
Engine that performs mapping operations.
MappingException - Exception in org.modelmapper
Indicates that an error has occurred during a mapping operation.
MappingException(List<ErrorMessage>) - Constructor for exception org.modelmapper.MappingException
 
match(Class<?>, Class<?>) - Method in interface org.modelmapper.spi.ConditionalConverter
Determines whether the converter matches and supports conversion from sourceType to destinationType.
matches(MatchingStrategy.PropertyNameInfo) - Method in interface org.modelmapper.spi.MatchingStrategy
Determines whether the data contained in the propertyNameInfo represents a source to destination match.
MatchingStrategies - Class in org.modelmapper.convention
MatchingStrategy implementations.
MatchingStrategies() - Constructor for class org.modelmapper.convention.MatchingStrategies
 
MatchingStrategy - Interface in org.modelmapper.spi
Identifies source to destination property matches by comparing source and destination type, property and property type names.
MatchingStrategy.PropertyNameInfo - Interface in org.modelmapper.spi
Encapsulates property name information to be use for determining whether a hierarchy of source and destination properties match.
memberNames(T) - Method in interface org.modelmapper.spi.ValueReader
Returns all member names for the source object, else null if the source has no members.
ModelMapper - Class in org.modelmapper
ModelMapper - Performs object mapping, maintains Configuration and stores TypeMaps.
ModelMapper() - Constructor for class org.modelmapper.ModelMapper
Creates a new ModelMapper.

N

NameableType - Enum in org.modelmapper.spi
Nameable types.
NameTokenizer - Interface in org.modelmapper.spi
Tokenizes property and class names prior to matching.
NameTokenizers - Class in org.modelmapper.convention
NameTokenizer implementations.
NameTokenizers() - Constructor for class org.modelmapper.convention.NameTokenizers
 
NameTransformer - Interface in org.modelmapper.spi
Transforms eligible property and class names prior to matching.
NameTransformers - Class in org.modelmapper.convention
NameTransformer implementations.
NameTransformers() - Constructor for class org.modelmapper.convention.NameTransformers
 
NamingConvention - Interface in org.modelmapper.spi
Determines which properties are eligible for matching based on their name.
NamingConventions - Class in org.modelmapper.convention
NamingConvention implementations.
NamingConventions() - Constructor for class org.modelmapper.convention.NamingConventions
 
NONE - Static variable in class org.modelmapper.convention.NamingConventions
Represents no naming convention.
not(Condition<S, D>) - Static method in class org.modelmapper.Conditions
Returns a condition that does NOT apply when the given condition applies.

O

of(Type) - Static method in class org.modelmapper.TypeToken
Returns a TypeLiteral for the type.
or(Condition<S, D>) - Method in class org.modelmapper.AbstractCondition
Returns a new condition that applies if this OR the given condition apply.
or(Condition<S, D>, Condition<S, D>) - Static method in class org.modelmapper.Conditions
Returns a new condition that applies if condition1 OR condition2 apply.
org.modelmapper - package org.modelmapper
ModelMapper is an intelligent object mapping library.
org.modelmapper.builder - package org.modelmapper.builder
Expression types for building Mappings and TypeMaps
org.modelmapper.config - package org.modelmapper.config
Configuration types
org.modelmapper.convention - package org.modelmapper.convention
Conventions
org.modelmapper.spi - package org.modelmapper.spi
Service Provider Interface

P

PropertyInfo - Interface in org.modelmapper.spi
Encapsulates information for a property.
PropertyMap<S,D> - Class in org.modelmapper
A PropertyMap defines mappings between properties for a particular source and destination type.
PropertyMap() - Constructor for class org.modelmapper.PropertyMap
Creates a new PropertyMap for the source and destination types S and D.
PropertyMap(Class<S>, Class<D>) - Constructor for class org.modelmapper.PropertyMap
Creates a new PropertyMap for the sourceType and destinationType.
PropertyMapping - Interface in org.modelmapper.spi
A mapping of a source property hierarchy to a destination property hierarchy.
PropertyType - Enum in org.modelmapper.spi
Property type.
Provider<T> - Interface in org.modelmapper
Provides instances of type T.
Provider.ProvisionRequest<T> - Interface in org.modelmapper
Contains provision request information.
ProviderExpression<S,D> - Interface in org.modelmapper.builder
Expresses a Provider.

S

setAmbiguityIgnored(boolean) - Method in interface org.modelmapper.config.Configuration
Sets whether destination properties that match more than one source property should be ignored.
setCondition(Condition<?, ?>) - Method in interface org.modelmapper.TypeMap
Sets the condition that must apply for the source and destination in order for mapping to take place.
setConverter(Converter<S, D>) - Method in interface org.modelmapper.TypeMap
Sets the converter to be used for any conversion requests for the TypeMap's source to destination type.
setDestinationNameTokenizer(NameTokenizer) - Method in interface org.modelmapper.config.Configuration
Sets the tokenizer to be applied to destination property and class names during the matching process.
setDestinationNameTransformer(NameTransformer) - Method in interface org.modelmapper.config.Configuration
Sets the name transformer used to transform destination property and class names during the matching process.
setDestinationNamingConvention(NamingConvention) - Method in interface org.modelmapper.config.Configuration
Sets the convention used to identify destination property names during the matching process.
setFieldAccessLevel(Configuration.AccessLevel) - Method in interface org.modelmapper.config.Configuration
Indicates that fields should be eligible for matching at the given accessLevel.
setFieldMatchingEnabled(boolean) - Method in interface org.modelmapper.config.Configuration
Sets whether field matching should be enabled.
setFullTypeMatchingRequired(boolean) - Method in interface org.modelmapper.config.Configuration
Set whether ConditionalConverters must define a full match in order to be applied.
setImplicitMappingEnabled(boolean) - Method in interface org.modelmapper.config.Configuration
Sets whether implicit mapping should be enabled.
setMatchingStrategy(MatchingStrategy) - Method in interface org.modelmapper.config.Configuration
Sets the strategy used to match source properties to destination properties.
setMethodAccessLevel(Configuration.AccessLevel) - Method in interface org.modelmapper.config.Configuration
Indicates that methods should be eligible for matching at the given accessLevel.
setPostConverter(Converter<S, D>) - Method in interface org.modelmapper.TypeMap
Sets the converter to be used after mapping between the source and destination types.
setPreConverter(Converter<S, D>) - Method in interface org.modelmapper.TypeMap
Sets the converter to be used before mapping between the source and destination types.
setPropertyCondition(Condition<?, ?>) - Method in interface org.modelmapper.config.Configuration
Sets the condition that must apply for a property in order for mapping to take place.
setPropertyCondition(Condition<?, ?>) - Method in interface org.modelmapper.TypeMap
Sets the condition that must apply in order for properties in this TypeMap to be mapped.
setPropertyConverter(Converter<?, ?>) - Method in interface org.modelmapper.TypeMap
Sets the converter to be used for converting properties in the TypeMap.
setPropertyProvider(Provider<?>) - Method in interface org.modelmapper.TypeMap
Sets the provider to be used for providing instances of properties during mapping.
setProvider(Provider<?>) - Method in interface org.modelmapper.config.Configuration
Sets the provider to use for providing destination object instances.
setProvider(Provider<D>) - Method in interface org.modelmapper.TypeMap
Sets the provider to be used for providing instances of destination type D during mapping.
setSourceNameTokenizer(NameTokenizer) - Method in interface org.modelmapper.config.Configuration
Sets the tokenizer to be applied to source property and class names during the matching process.
setSourceNameTransformer(NameTransformer) - Method in interface org.modelmapper.config.Configuration
Sets the name transformer used to transform source property and class names during the matching process.
setSourceNamingConvention(NamingConvention) - Method in interface org.modelmapper.config.Configuration
Sets the convention used to identify source property names during the matching process.
skip() - Method in interface org.modelmapper.builder.SkipExpression
Specifies that mapping for the destination property be skipped during the mapping process.
skip() - Method in class org.modelmapper.PropertyMap
Specifies that mapping for the destination property be skipped during the mapping process.
SkipExpression<D> - Interface in org.modelmapper.builder
Expresses a mapping that is skipped.
source - Variable in class org.modelmapper.PropertyMap
The source instance to be used in a mapping declaration.
source(String) - Method in class org.modelmapper.PropertyMap
Used for mapping a sourcePropertyPath to a destination.
SourceMapping - Interface in org.modelmapper.spi
A mapping of a source object to a destination property hierarchy.
STANDARD - Static variable in class org.modelmapper.convention.MatchingStrategies
A matching strategy that allows for source properties to be intelligently matched to destination properties, requiring that all destination properties be matched and all source property names have at least one token matched.
STRICT - Static variable in class org.modelmapper.convention.MatchingStrategies
A matching strategy that allows for source properties to be strictly matched to destination properties.

T

tokenize(String, NameableType) - Method in interface org.modelmapper.spi.NameTokenizer
Tokenizes the name for the given nameableType.
toString() - Method in class org.modelmapper.spi.ErrorMessage
 
toString() - Method in class org.modelmapper.TypeToken
 
transform(String, NameableType) - Method in interface org.modelmapper.spi.NameTransformer
Transforms the name for the given nameableType.
TypeMap<S,D> - Interface in org.modelmapper
Encapsulates mapping configuration for a source and destination type pair.
TypeToken<T> - Class in org.modelmapper
Represents a generic type T.
TypeToken() - Constructor for class org.modelmapper.TypeToken
Creates a new type token for T.

U

UNDERSCORE - Static variable in class org.modelmapper.convention.NameTokenizers
Tokenizes class and property names according to the underscore naming convention.
using(Converter<?, ?>) - Method in interface org.modelmapper.builder.ConverterExpression
Specifies the converter to use for converting to the destination property hierarchy.
using(Converter<?, ?>) - Method in class org.modelmapper.PropertyMap
Specifies the converter to use for converting to the destination property hierarchy.

V

validate() - Method in class org.modelmapper.ModelMapper
Validates that every top level destination property for each configured TypeMap is mapped to one and only one source property, or that a Converter was set for the TypeMap.
validate() - Method in interface org.modelmapper.TypeMap
Validates that every top level destination property is mapped to one and only one source property, or that a Converter was set.
ValidationException - Exception in org.modelmapper
Indicates that an error has occurred during a validate operation.
ValidationException(List<ErrorMessage>) - Constructor for exception org.modelmapper.ValidationException
 
valueOf(String) - Static method in enum org.modelmapper.config.Configuration.AccessLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.modelmapper.spi.ConditionalConverter.MatchResult
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.modelmapper.spi.NameableType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.modelmapper.spi.PropertyType
Returns the enum constant of this type with the specified name.
ValueReader<T> - Interface in org.modelmapper.spi
Reads values from a source.
values() - Static method in enum org.modelmapper.config.Configuration.AccessLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.modelmapper.spi.ConditionalConverter.MatchResult
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.modelmapper.spi.NameableType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.modelmapper.spi.PropertyType
Returns an array containing the constants of this enum type, in the order they are declared.

W

when(Condition<?, ?>) - Method in interface org.modelmapper.builder.ConditionExpression
Specifies the condition that must apply in order for mapping to take place for a particular destination property hierarchy.
when(Condition<?, ?>) - Method in class org.modelmapper.PropertyMap
Specifies the condition that must apply in order for mapping to take place for a particular destination property hierarchy.
with(Provider<?>) - Method in interface org.modelmapper.builder.ProviderExpression
Specifies the provider to be used for providing instances of the mapped property.
with(Provider<?>) - Method in class org.modelmapper.PropertyMap
Specifies a provider to be used for providing instances of the mapped property.
A C E F G H I J L M N O P S T U V W 

Copyright © 2011-2013. All Rights Reserved.