io.induct.yle.cdn.images.domain.Format Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yle-api Show documentation
Show all versions of yle-api Show documentation
Uploads all artifacts belonging to configuration ':archives'
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;
}
}