public enum HyperlinkType extends java.lang.Enum<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 HyperlinkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HyperlinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Internal public static final HyperlinkType NONE
public static final HyperlinkType URL
public static final HyperlinkType DOCUMENT
public static final HyperlinkType EMAIL
public static final HyperlinkType FILE
public static HyperlinkType[] values()
for (HyperlinkType c : HyperlinkType.values()) System.out.println(c);
public static HyperlinkType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.