public static enum ImagesService.OutputEncoding extends java.lang.Enum<ImagesService.OutputEncoding>
Modifier and Type | Method and Description |
---|---|
static ImagesService.OutputEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImagesService.OutputEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImagesService.OutputEncoding PNG
public static final ImagesService.OutputEncoding JPEG
public static final ImagesService.OutputEncoding WEBP
public static ImagesService.OutputEncoding[] values()
for (ImagesService.OutputEncoding c : ImagesService.OutputEncoding.values()) System.out.println(c);
public static ImagesService.OutputEncoding valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null