Enum Class Proceed

All Implemented Interfaces:
Serializable, Comparable<Proceed>, Constable

public enum Proceed extends Enum<Proceed>
Used when iterating over found DOM nodes.
  • Enum Constant Details

    • CONTINUE

      public static final Proceed CONTINUE
      Return CONTINUE from invoke in the node callback, to keep iterating.
    • STOP

      public static final Proceed STOP
      Return STOP from invoke in the node callback, to stop itering.
  • Method Details

    • values

      public static Proceed[] 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 Proceed 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