public static enum CachedImage.ImageType extends Enum<CachedImage.ImageType>
Enum Constant and Description |
---|
BMP |
BUFFERED |
GIF |
JPEG |
NOTESBMP |
PNG |
PNGE |
SVG |
TIFF |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static CachedImage.ImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CachedImage.ImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CachedImage.ImageType PNGE
public static final CachedImage.ImageType PNG
public static final CachedImage.ImageType JPEG
public static final CachedImage.ImageType GIF
public static final CachedImage.ImageType BMP
public static final CachedImage.ImageType NOTESBMP
public static final CachedImage.ImageType SVG
public static final CachedImage.ImageType TIFF
public static final CachedImage.ImageType UNKNOWN
public static final CachedImage.ImageType BUFFERED
public static CachedImage.ImageType[] values()
for (CachedImage.ImageType c : CachedImage.ImageType.values()) System.out.println(c);
public static CachedImage.ImageType 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 nullRevision 4.0.15 / 20220727-0149