public enum ImageFileFormat extends Enum<ImageFileFormat>
Defines the file format of the signature image.
This field can either be used as attribute in the
The following values are valid:
Specification: retail.
Enum Constant and Description |
---|
BMP
BMP format.
|
JPEG
JPEG format.
|
PNG
PNG format.
|
Modifier and Type | Method and Description |
---|---|
static ImageFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFileFormat JPEG
JPEG format.
Specification: retail.
public static final ImageFileFormat PNG
PNG format.
Specification: retail.
public static final ImageFileFormat BMP
BMP format.
Specification: retail.
public static ImageFileFormat[] values()
for (ImageFileFormat c : ImageFileFormat.values()) System.out.println(c);
public static ImageFileFormat 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