public enum SupportedImageType extends Enum<SupportedImageType>
Modifier and Type | Field and Description |
---|---|
String |
contentType |
String |
dotType |
boolean |
requiresProcessing |
Modifier and Type | Method and Description |
---|---|
static SupportedImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportedImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedImageType PNG
public static final SupportedImageType SVG
public static final SupportedImageType MAP
public static final SupportedImageType JSON
public static final SupportedImageType GV
public final String contentType
public final String dotType
public final boolean requiresProcessing
public static SupportedImageType[] values()
for (SupportedImageType c : SupportedImageType.values()) System.out.println(c);
public static SupportedImageType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016–2020. All rights reserved.