public static enum TPathCache.sensitivity extends Enum<TPathCache.sensitivity>
Enum Constant and Description |
---|
multi
path expressions reading the current-node-context are contained;
the expression must be evaluated anew for different current nodes.
|
none
no path expressions reading the current-node-context is contained;
the value does not depend on the input document at all.
|
session
only absolute path expressions reading the current-node-context are contained;
the value depends on the input document, but only as a whole.
|
Modifier and Type | Method and Description |
---|---|
static TPathCache.sensitivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TPathCache.sensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TPathCache.sensitivity none
public static final TPathCache.sensitivity session
public static final TPathCache.sensitivity multi
public static TPathCache.sensitivity[] values()
for (TPathCache.sensitivity c : TPathCache.sensitivity.values()) System.out.println(c);
public static TPathCache.sensitivity 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 nullsee also the complete user documentation .