public enum ExcelPicType extends Enum<ExcelPicType>
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 ExcelPicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelPicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelPicType EMF
public static final ExcelPicType WMF
public static final ExcelPicType PICT
public static final ExcelPicType JPEG
public static final ExcelPicType PNG
public static final ExcelPicType DIB
public static ExcelPicType[] values()
for (ExcelPicType c : ExcelPicType.values()) System.out.println(c);
public static ExcelPicType 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 © 2025. All rights reserved.