public enum ExcelPictureFormat extends Enum<ExcelPictureFormat>
Enum Constant and Description |
---|
BMP
Bmp picture format.
|
EMF
Emf picture format.
|
EXIF
Exif picture format.
|
GIF
Gif picture format.
|
ICO
Ico picture format.
|
JPEG
Jpeg picture format.
|
PNG
Png picture format.
|
TIFF
Tiff picture format.
|
WMF
Wmf picture format.
|
Modifier and Type | Method and Description |
---|---|
static ExcelPictureFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelPictureFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelPictureFormat BMP
public static final ExcelPictureFormat EMF
public static final ExcelPictureFormat EXIF
public static final ExcelPictureFormat GIF
public static final ExcelPictureFormat ICO
public static final ExcelPictureFormat JPEG
public static final ExcelPictureFormat PNG
public static final ExcelPictureFormat TIFF
public static final ExcelPictureFormat WMF
public static ExcelPictureFormat 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 nullpublic static ExcelPictureFormat[] values()
for (ExcelPictureFormat c : ExcelPictureFormat.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.