public enum ExcelHyperlinkType extends Enum<ExcelHyperlinkType>
ExcelHyperlink| Enum Constant and Description |
|---|
DOCUMENT
A hyperlink to another location in the same Excel document.
|
EMAIL
A hyperlink to an email address.
|
FILE
A hyperlink to a file.
|
NONE
No hyperlink.
|
URL
A hyperlink to a URL (web address).
|
| Modifier and Type | Method and Description |
|---|---|
static ExcelHyperlinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelHyperlinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelHyperlinkType DOCUMENT
public static final ExcelHyperlinkType URL
public static final ExcelHyperlinkType EMAIL
public static final ExcelHyperlinkType FILE
public static final ExcelHyperlinkType NONE
public static ExcelHyperlinkType[] values()
for (ExcelHyperlinkType c : ExcelHyperlinkType.values()) System.out.println(c);
public static ExcelHyperlinkType 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 (c) 2006-2026 North Concepts Inc. All Rights Reserved.