public static enum XLink.Show extends Enum<XLink.Show>
XLink.getShow()
Defined in the sis-utility module
Enum Constant and Description |
---|
EMBED
Load ending resource in place of the presentation of the starting resource.
|
NEW
Load ending resource in a new window, frame, pane, or other presentation context.
|
NONE
Behavior is unconstrained.
|
OTHER
Behavior is unconstrained; examine other markup in the link for hints.
|
REPLACE
Load the resource in the same window, frame, pane, or other presentation context.
|
Modifier and Type | Method and Description |
---|---|
static XLink.Show |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XLink.Show[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XLink.Show NEW
public static final XLink.Show REPLACE
public static final XLink.Show EMBED
public static final XLink.Show OTHER
public static final XLink.Show NONE
public static XLink.Show[] values()
for (XLink.Show c : XLink.Show.values()) System.out.println(c);
public static XLink.Show 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 © 2010–2013 The Apache Software Foundation. All rights reserved.