public static enum DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle extends Enum<DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle>
| Enum Constant and Description |
|---|
NewTab
Note: for backward compatibility this opens in a new window/tab, but
to do so it uses
Page.open(String, String) which is
deprecated, and in most browsers is blocked by popup blocking privacy
settings. |
Replace
replaces the contents of the current window/tab using
Page.setLocation(String) |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
openExternalLink(String address)
open external link
|
static DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle NewTab
Page.open(String, String) which is
deprecated, and in most browsers is blocked by popup blocking privacy
settings.public static final DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle Replace
Page.setLocation(String)public static DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle[] values()
for (DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle c : DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle.values()) System.out.println(c);
public static DefaultHyperlinkCellClickHandler.HyperlinkOpenStyle 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 nullpublic abstract void openExternalLink(String address)
address - Copyright © 2013–2026 Vaadin Ltd. All rights reserved.