public enum ExcelLinkType extends Enum<ExcelLinkType>
Enum Constant and Description |
---|
LINK_DOC
超链接 文档
|
LINK_EMAIL
超链接 邮箱
|
LINK_FILE
超链接 文件
|
LINK_URL
超链接
|
Modifier and Type | Method and Description |
---|---|
static ExcelLinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelLinkType LINK_URL
public static final ExcelLinkType LINK_DOC
public static final ExcelLinkType LINK_EMAIL
public static final ExcelLinkType LINK_FILE
public static ExcelLinkType[] values()
for (ExcelLinkType c : ExcelLinkType.values()) System.out.println(c);
public static ExcelLinkType 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 nullCopyright © 2024. All rights reserved.