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

io.induct.yle.cdn.images.domain.Format Maven / Gradle / Ivy

The newest version!
package io.induct.yle.cdn.images.domain;

/**
 * @since 2015-09-09
 */
public enum Format {
    JPEG("jpg"),
    PNG("png"),
    GIF("gif");

    private final String apiValue;

    Format(String apiValue) {
        this.apiValue = apiValue;
    }

    public String getApiValue() {
        return apiValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy