Enum Class MultiTypeNodeList.frequency

java.lang.Object
java.lang.Enum<MultiTypeNodeList.frequency>
eu.bandm.tools.xslt.base.MultiTypeNodeList.frequency
All Implemented Interfaces:
Serializable, Comparable<MultiTypeNodeList.frequency>, java.lang.constant.Constable
Enclosing class:
MultiTypeNodeList

public static enum MultiTypeNodeList.frequency extends Enum<MultiTypeNodeList.frequency>
The static info, how often a MixedContentContainer must be evaluated.
  1. constant -> only once, only when compiling (value is constant)
  2. once -> once per input corpus
  3. mixed -> some components (of the MultiTypeNodeList) are "always", but not all.
  4. always -> depends on xpath evaluation context, esp. on "focus" and "context list", or on local variables/parameters, thus must always be evaluated anew.
NOTE that further subdivision would be possible, eg. constant top-level vs,. "style sheet params" varying with session.
  • Enum Constant Details

  • Method Details

    • values

      public static MultiTypeNodeList.frequency[] 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

      public static MultiTypeNodeList.frequency valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • combine