public static enum XLink.Actuate extends Enum<XLink.Actuate>
XLink.getActuate()
Defined in the sis-utility
module
Enum Constant and Description |
---|
NONE
Behavior is unconstrained.
|
ON_LOAD
Traverse to the ending resource immediately on loading the starting resource.
|
ON_REQUEST
Traverse from the starting resource to the ending resource only on a post-loading event
triggered for this purpose.
|
OTHER
Behavior is unconstrained; examine other markup in link for hints.
|
Modifier and Type | Method and Description |
---|---|
static XLink.Actuate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XLink.Actuate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XLink.Actuate ON_LOAD
public static final XLink.Actuate ON_REQUEST
public static final XLink.Actuate OTHER
public static final XLink.Actuate NONE
public static XLink.Actuate[] values()
for (XLink.Actuate c : XLink.Actuate.values()) System.out.println(c);
public static XLink.Actuate 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–2017 The Apache Software Foundation. All rights reserved.