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

com.mailgun.expanders.EnumExpander Maven / Gradle / Ivy

Go to download

The Mailgun SDK for Java enables Java developers to work with Mailgun API efficiently.

The newest version!
package com.mailgun.expanders;

import com.mailgun.enums.EnumWithValue;
import feign.Param;

public class EnumExpander implements Param.Expander {

    @Override
    public String expand(Object enumWithValue) {
        return ((EnumWithValue) enumWithValue).getValue();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy