public static enum ImageDefinition.ImageType extends java.lang.Enum<ImageDefinition.ImageType>
| Modifier and Type | Method and Description |
|---|---|
static ImageDefinition.ImageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageDefinition.ImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageDefinition.ImageType JPEG
public static final ImageDefinition.ImageType PNG
public static final ImageDefinition.ImageType GIF
public static final ImageDefinition.ImageType BMP
public static ImageDefinition.ImageType[] values()
for (ImageDefinition.ImageType c : ImageDefinition.ImageType.values()) System.out.println(c);
public static ImageDefinition.ImageType 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