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

org.mapstruct.ap.internal.conversion.CurrencyToStringConversion Maven / Gradle / Ivy

There is a newer version: 1.6.3
Show newest version
/*
 * 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.util.Currency;
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;

import static org.mapstruct.ap.internal.conversion.ConversionUtils.currency;

/**
 * @author Darren Rambaud
 */
public class CurrencyToStringConversion extends SimpleConversion {
    @Override
    protected String getToExpression(final ConversionContext conversionContext) {
        return ".getCurrencyCode()";
    }

    @Override
    protected String getFromExpression(final ConversionContext conversionContext) {
        return currency( conversionContext ) + ".getInstance(  )";
    }

    @Override
    protected Set getFromConversionImportTypes(final ConversionContext conversionContext) {
        return Collections.asSet( conversionContext.getTypeFactory().getType( Currency.class ) );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy