public enum ExcelImgType extends Enum<ExcelImgType>
Workbook.PICTURE_TYPE_EMF,
Workbook.PICTURE_TYPE_WMF,
Workbook.PICTURE_TYPE_PICT,
Workbook.PICTURE_TYPE_JPEG,
Workbook.PICTURE_TYPE_PNG,
Workbook.PICTURE_TYPE_DIB| Enum Constant and Description |
|---|
DIB
Device independent bitmap
|
EMF
Extended windows meta file
|
JPEG
JPEG format
|
PICT
Mac PICT format
|
PNG
PNG format
|
WMF
Windows Meta File
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
获取类型编码
|
static ExcelImgType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelImgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelImgType EMF
public static final ExcelImgType WMF
public static final ExcelImgType PICT
public static final ExcelImgType JPEG
public static final ExcelImgType PNG
public static final ExcelImgType DIB
public static ExcelImgType[] values()
for (ExcelImgType c : ExcelImgType.values()) System.out.println(c);
public static ExcelImgType 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 int getValue()
Copyright © 2024. All rights reserved.