public enum HyperlinkType extends Enum<HyperlinkType>
Enum Constant and Description |
---|
ALT_HYPERLINK
alternative hyperlink action
|
GO_TO_DECLARATION
go to declaration
|
Modifier and Type | Method and Description |
---|---|
static HyperlinkType |
valueOf(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.
|
public static final HyperlinkType GO_TO_DECLARATION
public static final HyperlinkType ALT_HYPERLINK
public static HyperlinkType[] values()
for (HyperlinkType c : HyperlinkType.values()) System.out.println(c);
public static 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 nullBuilt on August 30 2023. | Copyright © 2017-2023 Apache Software Foundation. All Rights Reserved.