All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mapstruct.ap.internal.conversion.JodaTimeToDateConversion 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 static org.mapstruct.ap.internal.util.Collections.asSet;

import java.util.Date;
import java.util.Set;

import org.mapstruct.ap.internal.model.common.ConversionContext;
import org.mapstruct.ap.internal.model.common.Type;

/**
 * Conversion between the following Joda types and {@link Date}:
 * 
    *
  • org.joda.time.DateTime
  • *
  • org.joda.time.LocalDateTime
  • *
  • org.joda.time.LocalDate
  • *
* * @author Timo Eckhardt */ public class JodaTimeToDateConversion extends SimpleConversion { @Override protected String getToExpression(ConversionContext conversionContext) { return ".toDate()"; } @Override protected String getFromExpression(ConversionContext conversionContext) { return "new " + conversionContext.getTargetType().createReferenceName() + "( )"; } @Override protected Set getFromConversionImportTypes(ConversionContext conversionContext) { return asSet( conversionContext.getTargetType() ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy