Package eu.bandm.tools.xslt.base
Enum Class TPathCache.sensitivity
- All Implemented Interfaces:
Serializable
,Comparable<TPathCache.sensitivity>
,java.lang.constant.Constable
- Enclosing class:
- TPathCache
This value is ONLY related to the current-node-(list)-context,
not to referred variables nor functions!
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionpath expressions reading the current-node-context are contained; the expression must be evaluated anew for different current nodes.no path expressions reading the current-node-context is contained; the value does not depend on the input document at all.only absolute path expressions reading the current-node-context are contained; the value depends on the input document, but only as a whole. -
Method Summary
Modifier and TypeMethodDescriptionstatic TPathCache.sensitivity
Returns the enum constant of this class with the specified name.static TPathCache.sensitivity[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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. -
multi
path expressions reading the current-node-context are contained; the expression must be evaluated anew for different current nodes. [[AND context !?!?! FIXME]]
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-