public static enum HyperlinkData.HyperlinkType extends Enum<HyperlinkData.HyperlinkType>
| Enum Constant and Description |
|---|
DOCUMENT
Link to a place in this document
|
EMAIL
Link to an E-mail address
|
FILE
Link to a file
|
NONE
Not a hyperlink
|
URL
Link to an existing file or web page
|
| Modifier and Type | Method and Description |
|---|---|
static HyperlinkData.HyperlinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HyperlinkData.HyperlinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HyperlinkData.HyperlinkType NONE
public static final HyperlinkData.HyperlinkType URL
public static final HyperlinkData.HyperlinkType DOCUMENT
public static final HyperlinkData.HyperlinkType EMAIL
public static final HyperlinkData.HyperlinkType FILE
public static HyperlinkData.HyperlinkType[] values()
for (HyperlinkData.HyperlinkType c : HyperlinkData.HyperlinkType.values()) System.out.println(c);
public static HyperlinkData.HyperlinkType 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 © 2018–2024 Alibaba Group. All rights reserved.