![JAR search and dependency download from the Maven repository](/logo.png)
org.mapstruct.ap.internal.conversion.JavaLocalDateTimeToLocalDateConversion Maven / Gradle / Ivy
/*
* Copyright MapStruct Authors.
*
* Licensed under the Apache License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package org.mapstruct.ap.internal.conversion;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Set;
import org.mapstruct.ap.internal.model.common.ConversionContext;
import org.mapstruct.ap.internal.model.common.Type;
import org.mapstruct.ap.internal.util.Collections;
/**
* SimpleConversion for mapping {@link LocalDateTime} to
* {@link LocalDate} and vice versa.
*/
public class JavaLocalDateTimeToLocalDateConversion extends SimpleConversion {
@Override
protected String getToExpression(ConversionContext conversionContext) {
return ".toLocalDate()";
}
@Override
protected Set getToConversionImportTypes(ConversionContext conversionContext) {
return Collections.asSet(
conversionContext.getTypeFactory().getType( LocalDate.class )
);
}
@Override
protected String getFromExpression(ConversionContext conversionContext) {
return ".atStartOfDay()";
}
@Override
protected Set getFromConversionImportTypes(ConversionContext conversionContext) {
return Collections.asSet(
conversionContext.getTypeFactory().getType( LocalDateTime.class )
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy