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