org.modelmapper.internal.ConfigurableConditionExpressionImpl Maven / Gradle / Ivy
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.modelmapper.internal;
import org.modelmapper.Condition;
import org.modelmapper.Converter;
import org.modelmapper.Provider;
import org.modelmapper.builder.ConfigurableConditionExpression;
import org.modelmapper.spi.DestinationSetter;
import org.modelmapper.spi.SourceGetter;
import static org.modelmapper.internal.ExplicitMappingBuilder.MappingOptions;
import static org.modelmapper.internal.util.Assert.notNull;
/**
* {@link ConfigurableConditionExpression} implementation
*
* @author Chun Han Hsiao
*/
class ConfigurableConditionExpressionImpl implements ConfigurableConditionExpression {
TypeMapImpl typeMap;
private MappingOptions options = new MappingOptions();
public ConfigurableConditionExpressionImpl(TypeMapImpl typeMap) {
this.typeMap = typeMap;
}
public ConfigurableConditionExpression using(Converter, ?> converter) {
notNull(converter, "converter");
options.converter = converter;
return this;
}
public ConfigurableConditionExpression with(Provider> provider) {
notNull(provider, "provider");
options.provider = provider;
return this;
}
public ConfigurableConditionExpression when(Condition, ?> condition) {
notNull(condition, "condition");
options.condition = condition;
return this;
}
public void map(SourceGetter sourceGetter, DestinationSetter destinationSetter) {
notNull(sourceGetter, "sourceGetter");
notNull(destinationSetter, "destinationSetter");
new ReferenceMapExpressionImpl(typeMap, options).map(sourceGetter, destinationSetter);
options = new MappingOptions();
}
public void skip(DestinationSetter destinationSetter) {
notNull(destinationSetter, "destinationSetter");
new ReferenceMapExpressionImpl(typeMap, options).skip(destinationSetter);
options = new MappingOptions();
}
}