|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ImageEncoding>
com.flagstone.transform.util.image.ImageEncoding
public enum ImageEncoding
ImageEncoding describes the different image formats that can be decoded and added to a Flash movie.
Enum Constant Summary | |
---|---|
BMP
Windows Bitmap images. |
|
JPEG
Joint Photographic Experts Group format images. |
|
PNG
Portable Network Graphics images. |
Method Summary | |
---|---|
String |
getMimeType()
Get the mime-type used to represent the image format. |
ImageProvider |
getProvider()
Get the ImageProvider that can be registered in the ImageRegistry to decode the image. |
static ImageEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ImageEncoding[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageEncoding BMP
public static final ImageEncoding JPEG
public static final ImageEncoding PNG
Method Detail |
---|
public static ImageEncoding[] values()
for (ImageEncoding c : ImageEncoding.values()) System.out.println(c);
public static ImageEncoding valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getMimeType()
public ImageProvider getProvider()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |